Hi,
Thanks for using our plugins.
I came up with a function that displays the prices in a range.
It may not work in every case, but could be modified if need be.
It looks like your site already has modifications so you may already have the template in your theme.
So following our themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
You want to move and edit this file in your theme:
the-events-calendar\views\modules\meta\details.php
There you want to replace this:
<dd class=”tribe-events-event-cost”> <?php esc_html_e( tribe_get_formatted_cost() ) ?> </dd>
With This:
<dd class=”tribe-events-event-cost”><?php echo esc_html( get_tribe_woocommerce_tickets_price_range() ); ?></dd>
Before you do that you will need to add the following to your theme’s function.php:
https://gist.github.com/jesseeproductions/4adb6b034960c661c1e8
Let me know how this works out.
Thanks