SUGGESTION: Configurable Breadcrumb

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
I do not know if this has been mentioned yet but having the option to display the breadcrumb or not would be nice.
13 years ago
HI,

You can either hide or remove the breadcrumb from the ASPX files.

Otherwise, if you need this to be set by the Admin, you can include a CheckBox labeled "BreadCrumb Enabled" at an appropriate section in the Admin Panel. You can set the Settings Value as "BreadCrumb.Show" as True/False in the Settings table with the following code:

SettingManager.SetParam("BreadCrumb.Show", true/false);


And in the ASPX pages you can check:

<% if(SettingManager.GetSettingValueBoolean("BreadCrumb.Show")) { %>
<!-- BreadCrumb Control -->
<%}%>
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.