Hey Linda,
Our cost field now only accepts numeric values, so your long strings here won’t work with the plugin by default now. Unfortunately, the only way around this is custom code; I wrote up some custom code here for you that should help though, try pasting this in your theme’s functions.php file and then see if things improve!
add_filter( 'tribe_get_cost', 'cost_show_full_meta_field', 10, 2 );
function cost_show_full_meta_field( $cost, $post_id ) {
$full_cost = tribe_get_event_meta( $post_id, '_EventCost', false );
if ( isset( $full_cost[0] ) ) {
return sanitize_text_field( $full_cost[0] );
}
return $cost;
}
Cheers!
George