Blog entries: hide video on entries, but not on archive pages

I post using the video format because it looks good in the index page as well as in the archive pages. However, I would like to hide the video and not display it on the actual blog posts. How can I achieve that?

Using X 7.2.3 with child theme
Wordpress 5.5.3

This is an example of a post

Hi @ke_ev14,

Thank you for reaching out to us. This would require custom CSS as this is not a theme feature by default and is outside of our support scope, but we will do our best to help you getting started with the customization but we will not be able to implement it. To hide the video on single posts, try adding the following code in the Theme Options > CSS:

.single.single-format-video .entry-featured {
    display: none;
}

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Hope this helps!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.