I don’t like featured images are handled on the single event page. Of course this is a problem with the theme we use. Besides it is showed twice due to the HTML code of the single event. Easy to solve by modifying that code, but I would like to hide the featured image that is placed by the theme itself, but only on the single event pages.
On this link https://projectdmc.org/support/topic/why-are-there-duplicate-images-on-the-events-listings/ I found a good suggestion:
.single-event .theme-post-thumbnail {
display: none;
}
But that selector isn’t working on our website. The problem is in the part .theme-post-thumbnail
. That seems not toe be recognized by our theme. I found a workaround with the selector:.single-event .fusion-flexslider.flexslider.post-slideshow
It works by probably not the best solution. Is there replacement for .theme-post-thumbnail
?
By the way, I assume that .single-event
is a kind of class selector from EventManager, is that correct?