No option to add featured image in single event

Home Forums Calendar Products Events Calendar PRO No option to add featured image in single event

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #114123
    mvanderhorst
    Participant

    I’m not sure if there is an option I’m missing or if it’s a bug but I don’t have the option to add a featured image when I create an event. I see it mentioned in the documentation and on screenshots.

    #114160
    mvanderhorst
    Participant

    I did some further exploring and it seems to be a conflict with the theme that I’m using. I’m not sure where to go from here.

    #114610
    mvanderhorst
    Participant

    I enabled post-thumbnail support for the tribe_events post type in my custom function file. The option is now there and it seems to work but I don’t know if I just got lucky or if this the best way to solve the problem.

    #114915
    cecilewilliams
    Participant

    @mvanderhorst, I’m having the same issue. Could you share the code for your fix, please?

    #115031
    mvanderhorst
    Participant

    Here is what I added to the functions.php file in my child theme.

    add_action( ‘init’, ‘create_post_pub’ );
    function create_post_pub()
    {
    // Add featured image support to events plugin
    add_theme_support( ‘post-thumbnails’, array( ‘post’, ‘tribe_events’ ) );
    add_theme_support( ‘thumbnail’, array( ‘post’, ‘tribe_events’ ) );
    }

    #115609
    cecilewilliams
    Participant

    It worked, thanks so much!

    #115901
    Barry
    Member

    Some themes only declare post thumbnail support for a limited number of post types – it sounds like that is what happened here and I definitely see no problem with your solution. Thanks for sharing it!

    #115903
    mvanderhorst
    Participant

    Thank you Barry. I love the plug in!

    #118500
    Leah
    Member

    Hi mvanderhorst,

    Thanks so much for helping out! If you have a minute or two, we will love it if you could leave us a review here. Thank you for your support!

    Best,

    Leah

    #130123
    econclubtampa
    Participant

    I tried this fix and cannot seem to get it to work. I added it to functions.php within my Theme.

    #131582
    Leah
    Member

    Hi econclubtampa,

    We’d be happy to help you out, but would you mind starting your own thread? That way we can focus on your specific situation.

    Thanks,
    Leah

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘No option to add featured image in single event’ is closed to new replies.