In some themes it is not possible to assign a Button Image. There is not a "make this picture featured" (not sure how exactly it is) in media gallery.
In some themes it is not possible to assign a Button Image. There is not a "make this picture featured" (not sure how exactly it is) in media gallery.
OK, I tried to figure it out. It is easy to solve. Just add to your functions.php in theme folder this:
add_theme_support('post-thumbnails');
Hi novakpeter,
Thanks for sharing your solution,
Kind Regards!
I've tried this solution but have not had any success in assigning an image. Is there anything else I can try?
Thanks!
Hi josephine6608,
Can't think other than add_theme_support('post-thumbnails');... try this:
add_action( 'after_setup_theme', 'yourprefix_add_thumbnail_support', 9999 );
function yourprefix_add_thumbnail_support() {
if ( function_exists( 'add_theme_support' ) )
add_theme_support( 'post-thumbnails' );
}Hi Matt,
That seems to have worked like a charm! Thanks so much!
Thanks for the feedback josephine6608, glad to hear it's working.
Kind Regards!
This topic has been closed to new replies.