Hey @stephenpatrick,
This is indeed by design now, I’m sorry if that’s thrown things off for your client!
If you’d like to prevent our cost formatting, unfortunately at this time the best way is to manually overwrite the cost formatting with a filter. You can copy and paste this code into your client site’s functions.php file:
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;
}
That should just return the full cost without our new formatting โย let me know if this helps!
โ George