Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created December 28, 2016 11:41
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/6c8c3c8d84b9d77608d9116bfe012dec to your computer and use it in GitHub Desktop.
Save Pebblo/6c8c3c8d84b9d77608d9116bfe012dec to your computer and use it in GitHub Desktop.
Example filter to change the 'Qty*' text displayed on the ticket selector.
<?php //Please do not include the opening PHP tag if you already have one
function tw_ee_custom_qty_text() {
return 'CustomQty*';
}
add_filter( 'FHEE__ticket_selector_chart_template__table_header_qty', 'tw_ee_custom_qty_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment