Multiple Bread Crumb Removal (Including Help page)?:

CritiKiL

Active member
Ok, I have made my Help page an Intel page. It has breadcrumbs and I would like to remove them but I only know how to remove 'one BC' and it has to be a node explained here: http://xenforo.com/community/resources/remove-the-breadcrumbs-from-a-specific-node.342/. So I've already done this for my 'Shop' tab. Is it possible to do this (or similar) for 'more than just one BC page?

But it doesn't explain how to remove BC's for more than one node "nor" does it explain how to do this for the Help tab (renamed 'Intel' on my site). Can anyone show me how I would accomplish this?
 
I've used a page node for my landing page and I want to remove the breadcrumb from the top and bottom.

Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code to remove the breadcrumbs (replace the "1" with the node_id of that page node):

Code:
body.node1 .breadBoxTop,
body.node1 .breadBoxBottom
{
	display: none;
}
 
Top Bottom