Created
September 20, 2016 11:31
Example of how to change the order confirmation button text.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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