Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Last active September 5, 2022 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pebblo/356cb5d238114e1bfa29c240958f4ac7 to your computer and use it in GitHub Desktop.
Save Pebblo/356cb5d238114e1bfa29c240958f4ac7 to your computer and use it in GitHub Desktop.
Example of how to change the confirmation description shown on the thank you page.
<?php // Do not include the opening PHP tag if you already have one.
add_filter('FHEE__thank_you_page_overview_template__order_conf_desc', 'tw_ee_custom_order_conf_desc');
function tw_ee_custom_order_conf_desc() {
return '<h3>Congratulations<h3>Your registration has been successfully processed.<br/>Check your email for your registration confirmation. If you have not received it within 24 hours, check the SPAM or JUNK folder.';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment