Skip to content

Instantly share code, notes, and snippets.

@elimn
Last active October 5, 2016 17:27
Show Gist options
  • Select an option

  • Save elimn/ba4620d49922e4775cb1d316146d84cf to your computer and use it in GitHub Desktop.

Select an option

Save elimn/ba4620d49922e4775cb1d316146d84cf to your computer and use it in GitHub Desktop.
MT | TEC | Hide cost from the single event details section
<?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