How to add a featured image to venues and organisers

Home Forums Calendar Products Events Calendar PRO How to add a featured image to venues and organisers

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1061149

    Apparently you can add featured images to venues and organisers. In my wordpress dashboard, there is no box for featured image on the edit venue and organiser pages (there is on the edit event page).

    Am I missing something? Is there a setting to allow featured images for venues / organisers?

    #1061955
    Geoff
    Member

    Hi Chris,

    You’re not missing anything at all–venues and organizers actually do not support featured images.

    One way you could get around it is to use Advanced Custom Fields to add an image field to the Venue and Organizer screens, then use that to add the image to the pages.

    Does that makes sense and will it work for you? Please let me know. 🙂

    Cheers!
    Geoff

    #1061962
    Geoff
    Member

    Oh! I should add that including this in your functions.php file will do the same:

    /**
    * Enables the Thumbnail support for Organizer and Venue edit screens.
    */
    function tribe_add_thumbnail_support_venue_organizer() {
    add_post_type_support( 'tribe_organizer', 'thumbnail' );
    add_post_type_support( 'tribe_venue', 'thumbnail' );
    }
    add_action( 'init', 'tribe_add_thumbnail_support_venue_organizer' );

    Cheers!
    Geoff

    #1078843
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How to add a featured image to venues and organisers’ is closed to new replies.