thumbnail missing

Home Forums Calendar Products Events Calendar PRO thumbnail missing

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #25459
    Ellen
    Member

    Hi.
    Thanks for this tutorial. It’s just what I need but unfortunately I can’t make it work. The thumbnail just doesn’t show and I don’t have an option to select a feature image when editing an imported event from Facebook or when creating an event. I’m making my own theme and have added the following to the functions.php. in order to have feature images for posts.

    if ( function_exists( ‘add_theme_support’ ) ) {
    add_theme_support( ‘post-thumbnails’, array(‘post’));
    set_post_thumbnail_size( 593, 450, true ); // default Post Thumbnail dimensions (cropped)
    add_image_size( ‘category-archive’, 200, 283, true );
    add_image_size( ‘category-projects’, 220, 220, true );
    }

    My event page is here
    http://www.blus.dk/test/?post_type=tribe_events

    Should I add something to the functions.php file?

    I hope you can help me. Thanks
    Ellen T. O’ Gara

    #25483
    Jonah
    Participant

    Hi Ellen,

    What other changes did you make to your event template files to get the thumbnail to show up? Did you modify list.php like the tutorial instructed? Can you post samples of the code modifications you made to: http://snippi.com/?

    You might not be seeing the Featured Image block for events because you need to add the post_type to the array in your add_theme_support function:

    add_theme_support( ‘post-thumbnails’, array(‘post’, ‘tribe_events’));

    Does that help?

    – Jonah

    #25564
    Ellen
    Member

    Thanks Johah
    That solved my problem.

    #25615
    Jonah
    Participant

    Glad to hear Ellen, let me know if there’s anything else you need help with.

    Regards,
    Jonah

    #977827
    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 5 posts - 1 through 5 (of 5 total)
  • The topic ‘thumbnail missing’ is closed to new replies.