Remove Featured Image from Portfolio Page

Is there a way to remove the featured image from the portfolio page it is featured on? I want to keep the featured images for each of my portfolio pages, because when someone searches through portfolio items it is nice to have a picture to go with the different item names.

But I don't want it to show up at the top of the actual portfolio page itself.

Does this make sense?

Is there something I can remove in one of the .php files that will prevent the featured image from showing up on the actual portfolio page it's featured on, while still letting it show up when someone is searching portfolios via category?

Comments

  • Hi,

    do you mean to remove featured image on single portfolio pages? Because if this is what you mean, then you can remove it with custom css only.
  • I believe so, yes.

    Actually, since you said that, I just went and tried it. Including the following CSS in the Custom section made it disappear:

    .single-photo-wrapper {display:none;}

    Thanks!
  • Great :) This css is fine but will be much better to use below instead to be sure that image will be removed from single portfolio page only:
    .single-portfolio .single-photo-wrapper { display: none !important; }
Sign In or Register to comment.