Last active
October 5, 2016 17:27
-
-
Save elimn/ba4620d49922e4775cb1d316146d84cf to your computer and use it in GitHub Desktop.
MT | TEC | Hide cost from the single event details section
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 | |
| /** | |
| * Hides cost from the single event details section | |
| * | |
| * @param string $tpl Template relative path | |
| */ | |
| function tribe_single_hide_cost( $tpl ) { | |
| if ( 'modules/meta/details.php' === $tpl ) { | |
| add_filter( 'tribe_get_formatted_cost', '__return_empty_string' ); | |
| } | |
| } | |
| add_action( 'tribe_before_get_template_part', 'tribe_single_hide_cost' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment