• Can anyone help, I am using a plugin to show thumbnails on my recent posts which takes the image from featured images, so I went back through my latest posts and added a featured image, but now the featured images are also showing above the post on my Homepage, how do I stop them showing on the homepage, but leave the thumbnails in the widget on the right? It’s driving me crazy as I can’t work it out! thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey. Firstly, you will need to create a child theme. Instructions on how to do so can be found here: codex.www.ads-software.com/Child_Themes.

    Create a home.php file for your child theme and copy and paste the content from your parents theme’s home.php file into your child theme’s.

    Locate the following code in your child theme’s file:

    <?php if ( has_post_thumbnail()) : ?>
    						<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
    							<?php the_post_thumbnail(); ?>
    						</a>
    					<?php endif; ?>

    Delete this code and click save. Let me know if this resolves your issue.

    As per the theme developer’s request, please post in the theme’s dedicated forum: https://cyberchimps.com/forum/free/responsive/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove featured image from posts on Homepage?’ is closed to new replies.