Hello,
I have installed the plugin “FV Community news” that deactivate the “featured image option” in posts.
Is there someone who know something about it and can help me?
Thanks a lot,
Sem
Usually when this happens is because the plugin registers a custom post type. In functions.php try changing this line:
add_theme_support( 'post-thumbnails', array( 'post' ) );
to this:
add_theme_support( 'post-thumbnails' );
Thank you very much for your support!
I am using another plugin called “members list” that hasn’t got the problem with the “feature image” and, most of all, because in this way I can visualize the articles written by the site’s visitor in the home page and not only in the sidebar.
But your answer could be very useful because I’m trying to create a new custom post type in order to create a difference between my articles and that written by “the others”.
π