Skip to content

Instantly share code, notes, and snippets.

@moderatorwes
Created August 27, 2014 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moderatorwes/5f777ac89b9240faf45f to your computer and use it in GitHub Desktop.
Save moderatorwes/5f777ac89b9240faf45f to your computer and use it in GitHub Desktop.
Zendesk: Hide Entire Category when using Category_Tree
//Hide certain categories/section from HomePage using {Category_Tree}}
$('h2 a:contains("KNOWLEDGE BASE")').hide();
$('h2 a:contains("KNOWLEDGE BASE")').closest('.category').hide();
$('h2 a:contains("FAQs")').hide();
$('h2 a:contains("FAQs")').closest('.category').hide();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment