For our events we have tickets and meal packages. The ticket is the most expensive item.
I would like this page: http://annarborarms.com/events/category/training/handgun-1-basics/
To show only the highest priced ticket for that event.
Then the same on this page: http://annarborarms.com/event/handgun-foundation/
I made a change based on a previous ticket I found to the single event.php file
<!– changed from <?php echo tribe_get_cost( null, true ) ?> to <?php echo tribe_get_maximum_cost ( ) ?> –>
<span class=”tribe-events-cost”><?php echo tribe_get_maximum_cost ( ) ?></span>
However now it is showing the highest priced ticket from all events not that specific event.
How do I fix this?