Check your featured image class name and manualy modify the plugin index.php file.
Search for function sh_featured_image()
modify the following lines:
if( $hide ){ ?>
<style>
.has-post-thumbnail img.wp-post-image,
.attachment-twentyseventeen-featured-image.wp-post-image{ display: none !important; }
</style><?php
}
to
if( $hide ){ ?>
<style>
.has-post-thumbnail img.wp-post-image,
.attachment-twentyseventeen-featured-image.wp-post-image, .feature-image{ display: none !important; }
</style><?php
}
I’m using Magazine Newspaper theme and my featured image class name is .feature-image
-
This reply was modified 5 years, 9 months ago by darkm00n.
-
This reply was modified 5 years, 9 months ago by darkm00n.