Created
February 22, 2017 08:05
-
-
Save GeoffEW/7d267bb8d88a2312cd69d51d47f522d4 to your computer and use it in GitHub Desktop.
/* Tribe, hide cost for recurring instances other than the first */
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 | |
/* Tribe, hide cost for recurring instances other than the first */ | |
function tribe_hide_cost_for_recurring_instances ( $cost, $post_id, $with_currency_symbol ) { | |
$event = tribe_events_get_event( $post_id ); | |
if ( $event->post_parent > 0 ) { | |
$cost = ''; | |
} | |
return $cost; | |
} | |
add_filter( 'tribe_get_cost', 'tribe_hide_cost_for_recurring_instances', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment