Hey folks,
Sorry for the delay in our reply!
I’m not seeing the same as when doing this simple test:
– Activate latest version of The Events Calendar and Event Tickets.
– Add the snippet to show the price field.
– Create a new event with cost set to $10 and a RSVP ticket.
– Verify that on the front-end the price range is correctly shown: Free – $10.
If you want to completely remove the Free part, you can use this code:
/* Force the use of the cost field of event and ignore tickets price */
function tribe_just_show_price_field ( $cost, $post_id, $with_currency_symbol ) {
$cost_utils = Tribe__Events__Cost_Utils::instance();
$cost = tribe_get_event_meta( $post_id, '_EventCost' );
if ( $with_currency_symbol ) {
$cost = $cost_utils->maybe_format_with_currency( $cost );
}
return $cost;
}
add_filter( 'tribe_get_cost', 'tribe_just_show_price_field', 10 , 3 );
Please let us know if this works as expected,
Best,
Nico