Hi!
Thanks for the update on this one, if you want to remove the display of the prices everywhere you can add the following filter in your functions.php file from your current active theme.
add_filter( 'tribe_get_cost', '__return_empty_string' );
On the other side you can still continue with hiding the blocks of price with CSS with the following snippet of code.
.tribe-events-schedule h3 + .tribe-events-divider {
display: none !important;
}
.tribe-events-event-cost {
display: none;
}
Please let me know if you have any other questions about this issue or if there’s anything else I can do for you.
Thanks,
Crisoforo