Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #897640

    ravensfan
    Participant

    The css code removes the image from the archive page as well when i add the following css code.

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

    How can i avoid that, i want the image to show on archived pages.

    #898211

    Paul R
    Moderator

    Hi,

    It shouldn’t removed the images on archived pages.

    Can you provide us your site url so we can take a closer look.

    Thanks

    #908322

    iflystandbyadmin
    Participant

    Hi,

    I have been reading many posts about removing the featured image from posts. I have tried all codes and finally one of them worked. However the post title still displays along with the author, date and category. I don’t wish to display them there since I have plans to Display that information elsewhere but I can’t seem to be able to get rid of it.

    My website is iflystandby.com

    I have included a screenshot of the Data I wish to remove

    #908563

    Rupok
    Member

    Hi @iflystandbyadmin

    Thanks for updating the thread. It seems your website is under construction. Please take it off or provide us the credentials in private reply so that we can check and assist you on this.

    Meantime you could try this :

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

    Hope this helps.

    Thanks

    #1005964

    Markus
    Participant

    Is it also possible to hide the image for an individual post by adding a code to the Post Settings / Body CSS Classes?

    #1006469

    Friech
    Moderator

    Hi There,

    The field Body classes is only for adding a custom class on the page, not for defining a custom css.

    You can define this custom css on Customizer instead.

    .myclass .entry-header {
      display: none;
    }

    And then apply the myclass to your page.

    Hope it helps, Cheers!