To hide the Video category on the Video Page, you can use these CSS code.
#1. All categories
li.lesson-category { display: none !important; }
#2. Hide category on specific items
Suppose you need to hide the category on this item
First you need to find the item URL, in my example, we will have:
Next, use this code to Custom CSS box
li#thumb-hosted-with-custom-z9ehj-dk54m-kn9sj-pfzpc .grid-categories { display: none !important; }
#3. Hide specific categories on all items
Suppose you need to hide category “Yoga for Beginners” for all items.
First, you need to click on the category to see the category URL. In my example, it is:
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; }