I want to try and remove the breadcrumbs from a specific page.
So I started off by editing the PAGE_CONTAINER template like so:
The if statement is my addition to try and remove the breadcrumbs for any node which is a page but it doesn't work.
It actually removes the (top) breadcrumb from every page view.
Ultimately I want to be able to change the xen:if to use a specific node id (55) so I can use a Page as the home page without the breadcrumbs top and bottom.
Help appreciated
So I started off by editing the PAGE_CONTAINER template like so:
PHP:
<xen:if is="{$node.node_id} !={$page.node_id}">
<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>
The if statement is my addition to try and remove the breadcrumbs for any node which is a page but it doesn't work.
It actually removes the (top) breadcrumb from every page view.
Ultimately I want to be able to change the xen:if to use a specific node id (55) so I can use a Page as the home page without the breadcrumbs top and bottom.
Help appreciated
