add_filter( 'tribe_get_cost', 'tribe_not_show_free', 100, 3 ); function tribe_not_show_free( $cost, $post_id, $with_currency_symbol ) { // Check if the cost is a numeric value and is greater than 0, or if it contains the word 'No cost' if ( is_numeric( $cost ) && floatval( $cost ) > 0 ) { $cost = $cost; // Keep the cost as it is if it's greater than zero. } elseif ( strpos( $cost, 'No cost' ) !== false ) { $cost = ''; // Remove 'No cost' from the cost. } return $cost; }

John J. Byrne Community Center | UNIONDALE