No Featured Image Option in New/Edit Event

Home Forums Calendar Products Events Calendar PRO No Featured Image Option in New/Edit Event

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #940646
    Eric Wentworth
    Participant

    Hi there,

    I’ve given a shot to the fix here…

    No option to add featured image in single event

    …as this seems to be a common problem, but to no avail. I do have an older theme, but I’m hoping there’s a way to modify it to create the proper meta box. The theme shows the Featured Image box in the Post dialogue for the rest of the site.

    How would I tailor the code, and where, to add Featured Images to the Events admin?

    #940920
    Barry
    Member

    Hmm, well one other possibility is that the featured image metabox is present but hidden. With that same snippet suggested in the other topic you linked to, can you visit the event editor and access the Screen Options pulldown: ensure the featured images option is checked.

    Does that help at all?

    #940964
    Eric Wentworth
    Participant

    I’ve actually already looked at that possibility, but there’s no option available for the Featured Image box.

    #941373
    Barry
    Member

    OK, in that case I can only imagine your theme is registering its post thumbnail support at some atypical point or else something went wrong when you added that snippet.

    Can you confirm where you placed it exactly? Can you also try amending it to something like this:

    add_action( 'init', 'univeral_featured_img_support', 1000 );
    
    function univeral_featured_img_support() {
    	add_theme_support( 'post-thumbnails' );
    }

    (This will simply increase the chances of it successfully overridding the theme.)

    #941402
    Eric Wentworth
    Participant

    I placed code in my child theme’s functions.php file to try and add functionality for the thumbnails based on some of the other threads.

    However, I gave a shot to the code block you have above and voila – that did the trick beautifully, thank you.

    #941408
    Barry
    Member

    I’m glad to hear that 🙂

    In that case I’ll go ahead and close this topic – but of course if any other issues crop up please don’t hesitate to create a new topic and one of the team will be only too happy to assist.

    Thanks again!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘No Featured Image Option in New/Edit Event’ is closed to new replies.