How to remove feature image from individual blog post but not blog page

https://www.alpha60.com.au/blogs/journal/alex-georgies-rising-festival-picks

Hello,

I want to remove the feature image from individual blog posts:

https://www.alpha60.com.au/blogs/journal/alex-georgies-rising-festival-picks

but not from the blog page:

https://www.alpha60.com.au/blogs/journal

Is this possible?

Hi Kelvino,

I hope the following steps can help you get rid of the featured photos from your blog posts:

  1. From your Shopify Admin, go to Online Store > Theme > Edit code

  2. Go to Asset > theme.scss > paste bellow code in bottom of file

.blog-post.has-featured-image img{
   display: none;
}

Hope this helps :slightly_smiling_face:

Sorry this doesn’t seem to work :disappointed_face:

Hello @kelvino , here is your solution:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.scss and paste this at the bottom of the file:
.article--single .article__image{  display:none; }