tuanphan Posted August 17 Share Posted August 17 To hide the Video category on the Video Page, you can use these CSS code. If the code doesn't work, you can send link to video page, I will check again. #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 CSS code like this 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; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment