Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #23205

    Under general settings -> Blog Style, I’m using “Multi-author Blog ( Displays Gravitar and featured image above )

    I would like to remove the featured image from displaying above the blog post – without editing the 100s of posts with featured images.

    Also, separate question: If I’m logged in as the admin how do I get the “edit post” link to appear near the post/page title for quick editing?

    Thanks in advance,

    Dan

    #118943

    Hi,

    To remove the featured image, just add this on your custom.css

    .big-preview.multi-big {
    display: none;
    }

    Open includes > loop-index.php then find this code

    if(has_tag() && is_single())
    {
    echo '<span class="blog-tags minor-meta">';
    echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
    echo '</span></span>';
    }

    Replace that with

    if(has_tag() && is_single())
    {
    echo '<span class="blog-tags minor-meta">';
    echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
    echo '</span></span>';
    }

    edit_post_link();

    It will create a neat Edit this link at the bottom.

    Regards,

    Ismael

    #118944

    Perfect. That’s what I needed. Thanks.

    #118945

    Hey,

    Glad it worked . :)

    Regards,

    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Removing the featured image from top of a single blog post.’ is closed to new replies.