I referenced this guideby @Brogan and @Indigo for removing breadcrumb from a specific Page node.
But the code in my PAGE_CONTAINER template is slightly different and adding the suggested new lines of code isn't working. My template is as follows:
Can anyone please suggest how to implement the template changes to remove breadcrumb from my Page node?
Thanks!
But the code in my PAGE_CONTAINER template is slightly different and adding the suggested new lines of code isn't working. My template is as follows:
<!-- main content area -->
<xen:hook name="page_container_content_top" />
<xen:include template="ad_above_top_breadcrumb" />
<xen:hook name="page_container_breadcrumb_top">
<xen:if is="{$hasBreadBoxTop}">
<div class="breadBoxTop <xen:if is="{$topctrl}">{xen:if '!@uix_moveTopCtrl', 'withTopCtrl'}</xen:if> {xen:if '{$canSearch} && {$uix_searchPosition} == 4', 'withSearch'}">
<xen:if is="{$topctrl}"><xen:if is="!@uix_moveTopCtrl"><div class="topCtrl">{xen:raw $topctrl}</div></xen:if></xen:if>
<xen:include template="breadcrumb"><xen:set var="$microdata">1</xen:set></xen:include>
<xen:if is="{$canSearch} && {$uix_searchPosition} == 4">
<xen:include template="uix_searchMinimal" />
</xen:if>
</div>
</xen:if>
</xen:hook>
Can anyone please suggest how to implement the template changes to remove breadcrumb from my Page node?
Thanks!