Hi gethanna,
thanks for using MH Magazine lite.
Please have a look at this: Duplicate images.
Thanks! I have deleted <?php mh_featured_image(); ?> from content.php But the Featured image space at my posts page/blog page is still on. I want only the titles to appear not the picture box on my posts page/blog page. Thanks for the help
Sorry, your original question was how to delete it from posts. If you also don’t want to display featured images on archives, you can delete this in the file loop.php:
<div class="loop-thumb">
<a href="<?php the_permalink(); ?>">
<?php if (has_post_thumbnail()) { the_post_thumbnail('loop'); } else { echo '<img src="' . get_template_directory_uri() . '/images/noimage_174x131.png' . '" alt="No Picture" />'; } ?>
</a>
</div>
But please keep in mind that it’s not recommended to edit core theme files. If you are familiar with coding and want to modify the theme, you should create a child theme to apply your customizations. Otherwise your changes will be lost after theme updates.
I took this out and it still has the featured image.
Stimpdawg, if you want to remove the featured image on posts, you shouldn’t remove the above mentioned code as this is for archives. You might want to have a look at this: Remove feature image in post.