Hi @dogsmn,
Good question! The venue image is not shown on the event post by default, but I think it would be possible to accomplish with some custom development.
First off, you can use a template override so you can adjust the layout of the post. It looks like your layout might already be using a template override because it’s quite different from the layout that ships right out of the box, but here’s how template overrides work:
- Make a copy of the template file: /wp-content/plugins/events-calendar-pro/src/views/modules/meta/venue.php — at least, this appears to be the template you are looking for
- Make a new folder in your theme called tribe-events
- Make a new folder in that one called pro
- Make a new folder in that one called modules
- Make a new folder in that one called meta
- Add your copied <i>venue.php</i> file to that last folder
Now that the template is in your theme, it can be modified to suit your needs. In this case, while I do not have the exact coding you’ll need here, it will likely be something like this:
<?php echo tribe_event_featured_image( tribe_get_venue_id() ); ?>
Add that (or some variation of it) to where you’d like the image to be displayed.
Cheers!
Geoff