Okay
  Public Ticket #255095
Removing the Feat. Image on Post Pages?
Closed

Comments

  • Shaun started the conversation

    Is there a way to remove the Featured Image from the actual post pages? I want it on the posts archive page, but not on the single post page. How can I remove it? I'm sure there is a shortcode to do this correct?

  •  8,847
    Tahir replied

    Hey Shaun!

    There is a way to turn those off in Salient Theme Options. Please see screenshot: http://prntscr.com/47lx3s

    Cheers


    ThemeNectar Support Team 

  • Shaun replied

    Thanks so much for your help Tahir. I can't believe I didn't see that in the options panel. I was looking for the option in the post editor window or figured it was a shortcode of some kind. The theme option is much easier, except in instances where you actually do want the featured image on the single post pages. If that's the case, what do you do? Seams like it's all or nothing?

  •  8,847
    Tahir replied

    Hey Shaun!

    If you wish to manually turn some of them off you can do so using this css:

    .single-post.postid-2677 .post-featured-img {
        display: none;
    }

    Change the post id as per your liking.

    Cheers


    ThemeNectar Support Team 

  • Shaun replied

    Thanks Tahir. Where would I stick that CSS code? In the post editor at the top of the post or somewhere else within the theme preferences? Seams like it would be much easier to have a toggle switch in the post editor to turn the featured image on or off within the single post from there? Perhaps a suggestion for the next update?

    Love this theme! One of the best on the market if you ask me.

  •  8,847
    Tahir replied

    The css code need to be placed in the Custom CSS box located in your Salient Options panel  . 

    Yes we have it added in the wishlist for future updates. Thanks for the feedback. 

    Cheers


    ThemeNectar Support Team 

  • Heather replied

    Is there a way to also hide it from the blog view? I only want a featured image for the purpose of a preview when posted to social media sites.

  •  8,847
    Tahir replied

    Hey Heather !

    Yes is you can provide the page url i can write up some custom css for it. 

    Thanks


    ThemeNectar Support Team 

  • Heather replied

    It's www.rosiechild.com, thank you!!

  •  8,847
    Tahir replied

    Hey Again!

    Add this into the Custom CSS box located in your Salient Options panel :
    article.post .post-content span.post-featured-img {
        display: none !important;
    }
    
    Thanks


    ThemeNectar Support Team 

  • Heather replied

    Thank you, worked perfectly :)

  • mpfursich replied

    Hi there,

    I've removed all featured image options from the salient blog section of the theme, however on the blog page, a featured image always shows on the left side panel of the blog page. How do I remove a featured image altogether?


  •  75
    Scott replied

    Hey there,

    Thanks for reaching in,

    Please send us a link to your website so we can check this out for you,

    Regards

    Themenectar Support Team

  • mpfursich replied

     

  •  1
    creativecoop replied

    Is there a code to remove the product photo on the product page?

  •  8,847
    Tahir replied

    @crateivecoop,
    Please provide the page URL so I may write up the custom CSS for this request.
    Thanks


    ThemeNectar Support Team 

  •  1
    creativecoop replied

    Yes, it's for all the products, but here's one example: https://sage.academy/products/storytelling-for-learning-designers/

    The rest of the titles are in https://sage.academy/shop

  •  8,847
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .span_5.col.single-product-main-image {
        display: none !important;
    }
    .product .summary.entry-summary {
        width: 100% !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    creativecoop replied

    Perfect! Thank you!