CatalogCategoryBreadcrumbControl

CatalogCategoryBreadcrumbControl displays the current category hierarchy as a breadcrumb trail, with an optional home link.

CatalogCategoryBreadcrumbControl breadcrumb trail

CatalogCategoryBreadcrumbControl callouts

Configurable properties

Property Default Valid values or format Effect
BreadcrumbCSSClass
String
"CategoryBreadcrumb"   Sets the breadcrumb CSS class.
BreadcrumbDividerCSSClass
String
"CategoryBreadcrumbDivider"   Sets the divider CSS class.
BreadcrumbHomeLinkCSSClass
String
"CategoryBreadcrumbHomeLink"   Sets the home-link CSS class.
BreadcrumbItemLabelText
String
Empty string ("")   Sets the item label text.
BreadcrumbLastCategoryCSSClass
String
"CategoryBreadcrumbLastCategory"   Sets the final-category CSS class.
BreadcrumbLinkCSSClass
String
"CategoryBreadcrumbLink"   Sets the breadcrumb-link CSS class.
BreadcrumbModelLabelText
String
Empty string ("")   Sets the model label text.
Category_ID
Integer
the Category ID of the page’s catalog object, -1 if none.   Sets the category identifier.
DividerText
String
" > "   Sets the breadcrumb divider text.
EndWithItem
Boolean
false true, false Controls ending an SKU trail with the item instead of its model.
HomeLinkLabelText
String
"Home"   Sets the home-link label text.
IncludeHomeLink
Boolean
true true, false Controls home-link display.
Item_ID
Integer
-1   Sets the item identifier.

SitePages.config example

The following example loads CatalogCategoryBreadcrumbControl.ascx and applies the documented literal defaults. The following properties are omitted because they do not have documented literal defaults: BreadcrumbItemLabelText, BreadcrumbModelLabelText, Category_ID.

<Control src="CatalogCategoryBreadcrumbControl.ascx"
         BreadcrumbCSSClass="CategoryBreadcrumb"
         BreadcrumbDividerCSSClass="CategoryBreadcrumbDivider"
         BreadcrumbHomeLinkCSSClass="CategoryBreadcrumbHomeLink"
         BreadcrumbLastCategoryCSSClass="CategoryBreadcrumbLastCategory"
         BreadcrumbLinkCSSClass="CategoryBreadcrumbLink"
         DividerText=" &gt; "
         EndWithItem="false"
         HomeLinkLabelText="Home"
         IncludeHomeLink="true"
         Item_ID="-1" />

Add this <Control> element to the appropriate page placeholder as described in The SitePages.config File.

Inherited properties

CatalogCategoryBreadcrumbControl inherits shared conditions from CyberStoreBaseControl.


This site uses Just the Docs, a documentation theme for Jekyll.