Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created July 5, 2016 11:26
Show Gist options
  • Save Pebblo/469dda745c5256b47e6c5298d04592f4 to your computer and use it in GitHub Desktop.
Save Pebblo/469dda745c5256b47e6c5298d04592f4 to your computer and use it in GitHub Desktop.
This filter returns and empty string for the '/ bundle' text displayed within the ticket selector.
<?php //Please do not include the opening php tag if you already have one
//Return an empty string for the 'bundle' text used within the ticket selector
function ee_tw_remove_bundle_text() {
return '';
}
add_filter( 'FHEE__ticket_selector_chart_template__per_ticket_bundle_text', 'ee_tw_remove_bundle_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment