Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    Hi Johan, could you clarify your problem? By the featured image not working, do you mean that the link to add a featured image isn’t there at all? Or that you can add a featured image, but it doesn’t show up on the site?

    When you install Meteor Slides, is the featured image for the slides not working, or is it breaking the featured image functionality on a different custom post type?

    Thread Starter johangfx

    (@johangfx)

    Hi again!
    I can’t add a feature image for another custom post type when Meteor Slides is installed.

    thanks again

    Plugin Author Josh Leuze

    (@jleuze)

    Did you specify the other custom post type with an array when you added thumbnail support?

    Check out this Q/A from the FAQ:

    I have another custom post type that uses featured images, and when I install Meteor Slides, it disables the featured image box in my custom post type, what’s up with that?

    Meteor Slides is setup to check for post thumbnail support and create an array with the slides post type and any other post types that are in use. But in order for that to work, your theme or plugin needs to specify any custom post types in an array.

    Thread Starter johangfx

    (@johangfx)

    okey,
    So how do I “specify any custom post types in an array”?

    Thanks for the help!

    Plugin Author Josh Leuze

    (@jleuze)

    So you are enabling featured images like this right?

    add_theme_support( 'post-thumbnails' );

    That enables featured images for posts and pages, and in some cases custom post types.

    To specify a certain post type you need to add an array:

    add_theme_support( 'post-thumbnails', array( 'customtype' ) );

    If you need featured images for posts or pages, add that to your array:

    add_theme_support( 'post-thumbnails', array( 'post', 'customtype' ) );

    For more info in featured images, check out this post by Mark Jaquith.

    @jleuze : Great, this helps a lot!!!

    Plugin Author Josh Leuze

    (@jleuze)

    No problem!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: Meteor Slides] Featured image for custom post type’ is closed to new replies.