Hi there Torsten,
Thanks for reaching out and for your interest in our products π
Take a look to this Knowledge base article: Use the Event Cost field with Tickets installed. This will add the field back and also use the cost from tickets. If you want to completely override the value of tickets with the cost field then you can use this snippet:
/* 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 );
β
/* activate event cost field when using event tickets */
add_filter( 'tribe_events_admin_show_cost_field', '__return_true', 100 );
Please let me know if this answers your question,
Have a great weekend,
Nico