I recently ask how I can hide the feature image on the single post page and I got my answer.
BUT
It is now also hiding the videos that are shown on a video type post. Is there a way to only hide the feature image on standard type of posts and keep it showing on all the other post types?
Thanks.
Hey bakbek!
You can add folllowing code to Quick CSS to remove it
.single-format-standard .big-preview.single-big { display:none; }
and following to make it not clickable as you asked in your other topic
.single-format-standard .big-preview.single-big { pointer-events: none; }
Regards,
Yigit
Thanks :)