Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1046034
    fabipaolini
    Participant

    Hi guys!
    So, I want to keep the featured image in the blog posts page:
    http://www.fabipaolini.com/blog/

    but not in the individual blog posts per se.
    Also, is there a way to remove the title from the blog posts page
    http://www.fabipaolini.com/blog/
    and just have the images? (the images have the titles)
    thanks!

    #1046355
    John Ezra
    Member

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    body div.entry-featured {
        display: block;
    }
    
    .single .entry-featured {
        display:none;
    }
    
    .blog .entry-wrap {
        display: none;
    }

    Hope this helps – thanks!

    #1047212
    fabipaolini
    Participant

    Thanks John, that worked…
    However….what do I do to remove featured image from inside a page.

    I put this code: .entry-featured { display: none !important; }
    and now nothing comes up in my blog page (because we removed the text)

    http://www.fabipaolini.com/blog/

    see?
    thanks!
    fabi

    #1047381
    Jade
    Moderator

    Hi Fabi,

    Please use this code:

    .single-post .entry-featured {
        display: none;
    }

    Hope this helps.

    #1058268
    fabipaolini
    Participant

    Hi!
    Sorry, it’s still not working
    Recapping, I want to
    1. HAVE ONLY THE FEATURED IMAGE (NO TEXT) IN THE BLOG PAGE: fabipaolini.com/blog
    2. REMOVE FEATURED IMAGE IN POSTS AND PAGES

    This is the code I have:

    .single-post .entry-featured {
    display: none;
    }

    body div.entry-featured {
    display: block;
    }
    .single .entry-featured {
    display:none;
    }

    .blog .entry-wrap {
    display: none;
    }

    .entry-featured { display: none !important; }

    Thanks!! 🙂

    #1058366
    Joao
    Moderator

    Hi Fabi,

    I checked your blog post but I cannot see the posts there they might be hidden due to CSS.

    SO you would like on your blog page that just the images of the posts are shown, correct?

    And once inside the posts itself you would to not have the images.

    You also would like to hide the feature image if displaying posts on pages, is that correct?

    If there is some confusion please provide us more details

    Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thanks

    Joao

    #1068926
    fabipaolini
    Participant
    This reply has been marked as private.
    #1069253
    Friech
    Moderator

    Hi There,

    You can update your code to this:

    .blog .entry-wrap,
    .single-post .entry-featured {
    	display: none !important;
    }

    This bit of css code will hide the post title on the blog page: http://www.fabipaolini.com/blog/
    And will hide the feature image on the individual post.

    But! You need to address your custom CSS first. I’m seeing this on your custom css in customizer

    <div
      class="fb-like"
      data-share="true"
      data-width="450"
      data-show-faces="true">
    </div>

    That is not a css code, please remove that.

    Hope it helps, Cheers!

  • <script> jQuery(function($){ $("#no-reply-1046034 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>