Collection sidebar: Hide All Types, All Vendors and All Tags links

To hide the All Types link in the Collection sidebar while maintaining the rest of the links:

Use this custom Javascript code to hide:

/* -- code to hide All Types from collection sidebar -- */
$( "ul.collection-nav li a:contains('All Types')" ).remove();
/* -- end -- */

To hide the All Vendors link in the Collection sidebar while maintaining the rest of the links:

Use this custom Javascript code to hide:

/* -- code to hide All Vendors from collection sidebar -- */
$( "ul.collection-nav li a:contains('All Vendors')" ).remove();
/* -- end -- */

To hide the All Tags link in the Collection sidebar while maintaining the rest of the links:

Use this custom Javascript code to hide:

/* -- code to hide All Tags from collection sidebar -- */
$( "ul.collection-nav li a:contains('All Tags')" ).remove();
/* -- end -- */

Where do I add the Javascript code?

Use this link to learn where exactly to add this code snippet:

Where to add your Javascript code