SUGGESTION: Configurable Breadcrumb

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
I do not know if this has been mentioned yet but having the option to display the breadcrumb or not would be nice.
13 年 前
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.