Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Created August 5, 2016 21:10
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 joshfeck/9e50f1757bf0533c95917a69e758af4b to your computer and use it in GitHub Desktop.
Save joshfeck/9e50f1757bf0533c95917a69e758af4b to your computer and use it in GitHub Desktop.
Change the congratulations message in EE4.
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
add_filter( 'FHEE__thank_you_page_overview_template__order_conf_desc', 'my_custom_paragraphy' );
function my_custom_paragraphy() {
return '<h3>Custom text!</h3><p>More custom text!</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment