Created
July 5, 2016 11:26
-
-
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.
This file contains hidden or 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 | |
//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