I have a custom breadcrum for my site. It works almost perfectly, the only issue I have is that it is displaying full paths like so:
Home > About Us > Pages > Awards
I would prefer for the breadcrumb to display the following:
Home > About Us > Awards
Is there a way to get rid or ommit the "Pages" from the breadcrumb?
Here is the code I have:
<!--Adding additional custom breadcrumb -->
<div class="BreadCrumbWrap s4-notdlg">
<asp:SiteMapPath runat="server" SiteMapProvider="SPContentMapProvider"
id="ContentMap" CssClass="BreadCrumbStyle" PathSeparator=">">
<CurrentNodeStyle CssClass="BreadCurrentNode" />
<PathSeparatorStyle CssClass="BreadPathSeparator" />
</asp:SiteMapPath>
</div>
Any assistance will be greatly appreciated. Thanks in advance!
