• Resolved Everlight

    (@everlight)


    Hello, I need help for removing Featured Image from every blog post I made, but I want it to keep displayed at the blog roll in my homepage.

    I have read several help topics in the forum, and it looks like this is a theme-related issue.

    From what I know, I should remove <?php if( has_post_thumbnail() ) : ?> from single.php, however I didn’t find it.

    This is the code at single.php:

    ‘<?php
    /**
    * The template for displaying all single posts.
    *
    * @package Merlin
    */

    get_header(); ?>

    <section id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role=”main”>

    <?php while (have_posts()) : the_post();

    get_template_part( ‘template-parts/content’, ‘single’ );

    comments_template();

    endwhile; ?>

    </main><!– #main –>
    </section><!– #primary –>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>’

    Can anyone help me where to look the thumbnail code?
    Your help will be really appreciated.

    Thank you.

Viewing 1 replies (of 1 total)
  • Thread Starter Everlight

    (@everlight)

    I finally found a way without tweaking the code.

    In WP admin panel, Go to Appearance → Customize on the “Theme Options” section, and then go to “Post Setting”.

    Choose to uncheck the “Display featured image in single post” option. This will solve the problem.

    In case anyone found the same issue with the same theme (or maybe another theme), try to look into your “Theme Options” customization. Sometime the theme developer has already give the option to solve this kind of issue but we may need to browse a little further into the theme setting.

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme: Merlin] Remove Featured Image from Post’ is closed to new replies.