Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Created February 22, 2017 08:05
Show Gist options
  • Save GeoffEW/7d267bb8d88a2312cd69d51d47f522d4 to your computer and use it in GitHub Desktop.
Save GeoffEW/7d267bb8d88a2312cd69d51d47f522d4 to your computer and use it in GitHub Desktop.
/* Tribe, hide cost for recurring instances other than the first */
<?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