• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Remove the breadcrumbs from a specific node

Paul B

XenForo moderator
Staff member
Many thanks to Indigo for coming up with the solution for this.

This particular edit can be used if you want to set a Page as the home page.
It works much better without the top and bottom breadcrumbs as it looks more like a static page, rather than part of the forum, which of course it still is.

So the header, footer and styling all remain, just the breadcrumbs are removed.

In the code below, change the 'node-55' for the actual node id of your page.
You can check the node id in the ACP by clicking on the node title and it will be displayed in the URL.

Open the PAGE_CONTAINER template and find this:
HTML:
<!-- top breadcrumb, top ctrl -->
<div class="breadBoxTop">
	<xen:if is="{$topctrl}"><div class="topCtrl">{xen:raw $topctrl}</div></xen:if>
	<xen:include template="breadcrumb"><xen:set var="$microdata">1</xen:set></xen:include>
</div>
Replace it with this:
HTML:
<!-- top breadcrumb, top ctrl -->
<xen:if is="{$quickNavSelected} != 'node-55'">
<div class="breadBoxTop">
	<xen:if is="{$topctrl}"><div class="topCtrl">{xen:raw $topctrl}</div></xen:if>
	<xen:include template="breadcrumb"><xen:set var="$microdata">1</xen:set></xen:include>
</div>
</xen:if>


Then find this:
HTML:
<div class="breadBoxBottom"><xen:include template="breadcrumb" /></div>
Replace it with this:
HTML:
<xen:if is="{$quickNavSelected} != 'node-55'">
<div class="breadBoxBottom"><xen:include template="breadcrumb" /></div>
</xen:if>


The end result is a page which looks like this:
without_breadcrumbs.webp

Instead of this:
with_breadcrumbs.webp
 
If you combine this breadcrumb removal with ....

Assign Pages to Different Tabs
This is an extremely quick mod. Pages always fall under the "Forum" tab and breadcrumbs, but sometimes that may not be what you're looking for.
This mod allows you to assign a navtab to your page, which will be the tab selected when the user follows the link. As a side benefit, the breadcrumbs will also follow your custom navigation. [read more]

You can have a Home Page ... with the Home Tab working as it should !

Update: December 20, 2011 18:12 EST -
For those wanting pages or forums assigned to Tabs ... use Jake's new Addon
http://xenforo.com/community/threads/nodes-as-tabs-with-tab-selection.23295/
 
I want to remove breadcrumbs from multiple pages... how is this accomplished?
Same here. Tried adding the additional nodes in the code above,
Code:
<xen:if is="{$quickNavSelected} != 'node-55, node-137 '">
with and without commas in between.

Did you ever figure this out, masterchief? If not, can someone more well-versed than I comment on how best to do this on a multitude of pages? Thanks in advance!
 
Simple solution.. I have set my external pages with this code which is learned from using Jaxel ultimate random header addon BTW...

Code:
<xen:container var="$quickNavSelected">crusaders</xen:container>

All I need to do is place this code in the PAGE_CONTAINER template to test as conditional

Code:
<xen:if is="{$quickNavSelected} != 'crusaders">

This code tests for multiple pages:

Code:
<xen:if is="!in_array({$quickNavSelected}, array('comics','tos'))">
 
I want to remove breadcrumbs from multiple pages... how is this accomplished?

I'm creating several 'static' informational pages and would like to remove the breadcrumbs from each. Are Brogan's instructions still the way to go or is there an updated manner in which to remove the breadcrumbs?

EDITED: Looks like Brogan's code works fine :)

Also, I'd like to remove them from all of the pages, so hopefully the solution will allow for multiple nodes to be included.

EDITED: Looks like MasterChief's code worked too :)

HTML:
<xen:if is="!in_array({$quickNavSelected}, array('node-XX','node-XX'))">

Just make sure to change the "XX" to your node #. :)
 
Hahaha. Heh. I am stubborn. Or rather that Nodes as Tabs guy told me how to turn a topic into a highlight-able tab and it has emboldened me to remove breadcrumbs from it now. :D
 
Hi, Brogan. Used the Conditionals from the Main FAQ you put together to figure out how to do this:

Code:
<xen:if is="{$forum.node_id} !== 75">
                        <div class="breadBoxTop">
                            <xen:if is="{$topctrl}"><div class="topCtrl">{xen:raw $topctrl}</div></xen:if>
                            <xen:include template="breadcrumb"><xen:set var="$microdata">1</xen:set></xen:include>
                        </div>
</xen:if>

Code:
<xen:if is="{$forum.node_id} !== 75">
            <div class="breadBoxBottom"><xen:include template="breadcrumb" /></div>
</xen:if>

Result: http://theinfinityprogram.com/index.php?threads/faq-nsfaq.4275/
And only in that forum/topic.

tumblr_lp9z0hIDjP1qhnxnd.gif

In yo face!
 
Top Bottom