Okay
  Public Ticket #879419
Feature Image
Closed

Comments

  •  2
    Caitlin started the conversation

    Hi Support team,

    Just wondering if you would be able to help me out, I want to disable the feature image in the single post page, however I still want the feature image active on the previews on the homepage. I am trying to work with the following code to disable it using the child theme template >

    #blog_single_thumbnails { display: none!important; }

    #post_slider_images { display: none!important; }

    But it doesn't seem to be working.

    Kind regards,
    Caitlin


  • [deleted] replied

    Hi Caitlin,

    Your website is on coming soon mode. Can you please send us your WordPress username and password? We need to investigate your site and then get back to you if we have possible solution.

    Make sure to choose Private Reply when you send us sensitive informations!

  •   Caitlin replied privately
  • [deleted] replied

    Hi Caitlin,

    Can you please add the code below to Custom CSS:

    section.blog .post .post-image img {
        display: none;
    }
  •  2
    Caitlin replied

    Hi Ylli,

    Great that has worked on the single post pages, however it has also taken the images out of the blog category section (Where you see all the blog posts)

    I have attached a screenshot for your reference..


  • [deleted] replied

    Hi Caitlin,

    I just added this new CSS code for you and now it is all good.

    body.single-post section.blog .post .post-image img {
    display: none;
    }