Thanks for following up Jens!
Just add the following snippet to your theme’s (or child theme’s) functions.php file:
/* Tribe, add content + image to venue/organizer shortcode (https://theeventscalendar.com/knowledgebase/listing-venues-and-organizers/) */
function tribe_venue_organizer_list_add_info ( $item, $atts ) {
$item = substr ( $item, 0, -5 );
// add content
$item .= '
' . get_the_content() . '
';
// add featured image
if ( $img = get_the_post_thumbnail ( ) ) {
$item .= '
' . $img . '
';
}
$item .= '';
return $item;
}
add_filter( 'TEC_VenueOrganizer_List.list.item', 'tribe_venue_organizer_list_add_info', 10, 2 );
You can change the markup and order of the content and image, it’s just a sample!
Please let me know if it works for you,
Best,
Nico