• Hello,

    My website is http://www.avoiceformalestudents.com. The theme is Reporter by Designer Themes.

    My question is simple: how do I remove featured images from the “inside” of posts? I’m not trying to remove the images from the previews of the posts on the front page of the site, just from the posts themselves once they are clicked on and brought up.

    I’ve been looking around the forums, but apparently the topics didn’t fit my version exactly. Based on previous forum discussions I am under the assumption that I need to edit the single.php file. An excerpt of the file is below. Please help; it would be greatly appreciated.

    Thank you.

    <article <?php post_class(); ?>>

    <div class=”featured-image”>

    <?php engine_thumbnail(); ?>

    </div>
    <!– /.featured-image –>

    <!– .entry-header –>
    <header class=”entry-header main-header”>

    <div class=”entry-meta”>
    <span class=”entry-comments”>“><i class=”icon-comments”></i><?php comments_number(0, 1, ‘%’); ?></span>
    <span class=”entry-date”><i class=”icon-calendar”></i><?php the_time( get_option(‘date_format’) ); ?></span>

    <span class=”entry-tags hide”><?php the_tags(); ?></span>
    </div>

    <h2 class=”entry-title”><?php the_title(); ?></h2>

    </header>
    <!– /.entry-header –>

    <div class=”entry-content”>
    <?php the_content(); ?>
    <?php engine_link_pages(‘before=<div class=”page-links pagination”>&after=</div>’); ?>
    </div>

Viewing 1 replies (of 1 total)
  • Remove this:

    <div class="featured-image">
    <?php engine_thumbnail(); ?>
    </div>
    <!-- /.featured-image -->

    Also, you should be using a Child Theme. Are you?

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove featured images from the "inside" of posts’ is closed to new replies.