Disabling "About Us"

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
I've taken a look through the config settings and can;t find a way to disable the "About Us" page and link. ANyone know how to do it?
13 years ago
azurecurve wrote:
I've taken a look through the config settings and can;t find a way to disable the "About Us" page and link. ANyone know how to do it?


Hello...

No need to disable "AboutUs" page, just remove it from the menu and information section.

To remove it from header menu:

Go to nopCommerceStore Folder / Modules / HeaderMenu.ascx

In the page source code, find this :

<li><a href="<%=Page.ResolveUrl("~/aboutus.aspx")%>"><span>
                <%=GetLocaleResourceString("Content.AboutUs")%></span></a></li>

just comment it out like this;

<!--  <li><a href="<%=Page.ResolveUrl("~/aboutus.aspx")%>"><span>
                <%=GetLocaleResourceString("Content.AboutUs")%></span></a></li> -->

To remove "AboutUs" from Information Section:

Go to nopCommerceStore Folder / Modules / InfoBlock.ascx

and command the aboutus code like this:

<!--  <li><a href="<%=Page.ResolveUrl("~/aboutus.aspx")%>"><span>
                <%=GetLocaleResourceString("Content.AboutUs")%></span></a></li> -->
13 years ago
That's great. Thanks very much
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.