Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Created November 1, 2016 04:50
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GeoffEW/b440feef873af841d023c0bf0839e93f to your computer and use it in GitHub Desktop.
Save GeoffEW/b440feef873af841d023c0bf0839e93f to your computer and use it in GitHub Desktop.
The Events Calendar - Make code empty if it's 0 or Free
<?php
/*
* The Events Calendar - Make code empty if it's 0 or Free
*/
add_filter ( 'tribe_get_cost', 'tribe_not_show_free', 10, 3 );
function tribe_not_show_free ( $cost, $post_id, $with_currency_symbol ) {
if ( $cost == 0 || $cost == 'Free' ) {
$cost = '';
}
return $cost;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment