Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created September 20, 2016 11:31
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/93fe2a2de7b3124720f9ce36e5a2e00d to your computer and use it in GitHub Desktop.
Save Pebblo/93fe2a2de7b3124720f9ce36e5a2e00d to your computer and use it in GitHub Desktop.
Example of how to change the order confirmation button text.
<?php //Please do not include the opening PHP tag if you already have one.
function tw_ee_button_confirmation_text() {
return 'View Full Confirmation Receipt';
}
add_filter( 'FHEE__thank_you_page_overview_template__order_conf_button_text', 'tw_ee_button_confirmation_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment