Hi there,
In the list view, I want to hide the price and number of tickets remaining (crossed out in attached screenshot).
After consulting the Themer’s Guide, in THEME-FOLDER/tribe-events/views/list/single-event.php, I have tried commenting out or deleting the following lines (68–81):
<!-- Event Cost -->
<?php if ( tribe_get_cost() ) : ?>
<div class="tribe-events-event-cost">
<span class="ticket-cost"><?php echo tribe_get_cost( null, true ); ?></span>
<?php
/**
* Runs after cost is displayed in list style views
*
* @since 4.5
*/
do_action( 'tribe_events_inside_cost' )
?>
</div>
<?php endif; ?>
But the price still shows in the list view.
Could you help me find which view template (and which part of that template) I’ll need to customize to remove the price and number of tickets remaining, as in the screenshot?
Thanks in advance for your help.