Buy me a coffee

Hide Video Category on Video Page

To hide the Video category on the Video Page, you can use these CSS code.

#1. All categories

li.lesson-category {
display: none !important;
}

Hide Video Category On Video Page 01 Min

#2. Hide category on specific items

Suppose you need to hide the category on this item

Hide Video Category On Video Page 02 Min

First you need to find the item URL, in my example, we will have:

Hide Video Category On Video Page 03 Min

Next, use this code to Custom CSS box

li#thumb-hosted-with-custom-z9ehj-dk54m-kn9sj-pfzpc .grid-categories {
display: none !important;
}

Hide Video Category On Video Page 04 Min

#3. Hide specific categories on all items

Suppose you need to hide category “Yoga for Beginners” for all items.

Hide Video Category On Video Page 05 Min

First, you need to click on the category to see the category URL. In my example, it is:

Hide Video Category On Video Page 06 Min

Next, use this code to Custom CSS box

li.lesson-category:has(a[href*="/yoga-for-beginners"]) {
display: none !important;
}
.grid-categories:has(a[href*="/yoga-for-beginners"]) span {
display: none !important;
}

Hide Video Category On Video Page 07 Min