Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created April 26, 2017 10:06
Show Gist options
  • Save Pebblo/6b83db7cd7fb41aa363f7c973cf307bd to your computer and use it in GitHub Desktop.
Save Pebblo/6b83db7cd7fb41aa363f7c973cf307bd to your computer and use it in GitHub Desktop.
Example of hot to filter the text used for the payment selection header when there is only a single payment method.
<?php //Please do not include the opening PHP tag if you already have one
function tw_ee_method_of_payment_hdr() {
return 'Choose Payment Method';
}
add_filter( 'FHEE__registration_page_payment_options__method_of_payment_hdr', 'tw_ee_method_of_payment_hdr');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment