• Resolved ericthomson

    (@ericthomson)


    In The Events Calendar > Venue, what is the purpose of the description and featured image? They do not show up in the actual event and there is no shortcode to add them. I switched from Modern Events Calendar which did show them and am trying to figure out a way to duplicate that behavior. Any suggestions welcome.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Martin Taylor

    (@docdunning)

    A suggestion – you might need to copy the template for a venue to your theme, and add some code of this sort at the appropriate point:

    $vobj = tribe_get_venue_object(tribe_get_venue_id());
    $vimg = get_the_post_thumbnail(tribe_get_venue_id());
    echo $vobj->post_content;
    echo $vimg;

    I’m not aware of any built-in way to do this.

    Thread Starter ericthomson

    (@ericthomson)

    Thanks, this was useful.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Venue description and featured image’ is closed to new replies.