Hi @rachel,
Absolutely, that’s totally possible! I would suggest overriding the [template-name.php] template to make that happen. You can learn more about overriding calendar templates in our Themer’s Guide, but it basically boils down to this:
- Make a copy of the single-event.php template. It is located at /wp-content/plugins/the-events-calendar/src/views/single-event.php
- Make a new folder in your theme called tribe-events
- Drop your copied single-event.php file in that folder
Now that the template is in your theme, you can modify it to suit your needs. In this case, remove the cost field, which is this code (Lines 38-40):
<?php if ( tribe_get_cost() ) : ?>
<span class="tribe-events-cost"><?php echo tribe_get_cost( null, true ) ?></span>
<?php endif; ?>
Will this work for you? Please let me know. 🙂
Cheers!
Geoff