Hi lifttraining,
I guess you could do that with a template override of the photo view.
You will likely need to create an override for this file:
wp-content/plugins/events-calendar-pro/src/views/pro/photo/single-event.php
here:
wp-content/themes/[your-theme]/tribe-events/pro/photo/single-event.php
and probably insert this at the appropriate place:
[code language=”php”]
<!– 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>
</div>
<?php endif; ?>
[/code]
(This is taken from the list view file.)
Note, I haven’t tested this, but should get you started.
Let me know if you need further assistance.
Cheers,
Andras