XF 1.5 How to remove the bottom breadcrumb?

max_d

Member
I know it’s located some were in the PAGE_CONTAINER template, but I’m not sure what block of code I should comment out.

Thank you.
 
Sorry, all I found was this:
Code:
<div class="breadBoxTop {xen:if $topctrl, withTopCtrl}">
But when I commented it out, it broke my theme.

The following code works for me, but for some reason the “Post New Thread” button located at the top seems to disappear.
Code:
<xen:comment>
            <xen:hook name="page_container_breadcrumb_top">
             <div class="breadBoxTop {xen:if $topctrl, withTopCtrl}">
               <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:hook>
</xen:comment>
 
Ah yes, the top breadcrumb has some other stuff included.
Try this in EXTRA.css instead:
Code:
.breadcrumb
{
    display: none;
}

Otherwise you can likely just remove
<xen:include template="breadcrumb"><xen:set var="$microdata">1</xen:set></xen:include>
 
Top Bottom