Disabling Featured Images on All Single Post Pages

Hello!

I had a few questions regarding blog pages. Most importantly - I love having the featured image thumbnails on my blog page, but I do NOT want the featured image on any of my single post pages (it ends up making pictures repetitive). How can I disable this feature? I know CSS, but can't seem to identify the age for single post page featured images. I found the feature to disable captions on single post page feature images, but no way to disable the featured images on these pages as a whole.

Second, I have disabled the "zoom image" feature for single posts, but it does not seem to have taken effect. I.e. it is still zooming on my images.

And lastly, I've set the crop ratio for thumbnail images on my blog page (photo/horizontal images layout) but they are not being successfully cropped. I have the Force Regenerate Thumbnails Plugin, but they are still different sizes....help?!

Thank you!

Comments

  • edited November 2016
    If you are talking about to hide the featured image which will automatically shown on top of the post/page/portfolio, you can add this css coding inside the muffin builder:

    1. Add a wrap/item/column (under or above your others contents won't affect your layout design).
    2. Add this code in column:

    <style>
    .single-photo-wrapper, .project-description { display: none; }
    </style>

    3. Than your featured image on top of post/page/portfolio will disappear.


    But I only know how to hide a single post/page/portfolio,
    sorry I've no idea how to hide it all.....


  • Hi,

    please send us link to page/s where you would like to do above changes first so we can have a look on it and give you best possible solution.

    Thanks!
  • Hi! Thanks  so much for both of your responses.


    (Still working on building the site, so it has a temporary domain!) But as you can see, still zooming on thumbnail images for some reason. Also, the size of the featured image has gotten a bit more uniform, but still off.

    I like how the blog as a whole is laid out, but I don't like the featured image at the top of a single page post. Example: http://ddd.0bf.myftpupload.com/our-top-30-must-have-at-the-land-of-nod-sale/

    Thank you!
  • As you can see on http://pasteboard.co/rqGEKOb94.png your images are only 600px wide so if you want to make them wider, you need to upload wider images. Or you can use below css to center them on blog page:
    .blog .blog_wrapper .post-photo-wrapper { text-align: center !important; }
    But to disable zoom effect, please use:
    .image_frame .image_wrapper img:not(.ls-l) { transform: scale(1) !important; }
    To remove featured image from single post page, use:
    .single-post .single-photo-wrapper.image { display: none !important; }
Sign In or Register to comment.