How to add menu items

For general questions and discussions specific to the AbleCommerce GOLD ASP.Net shopping cart software.
Post Reply
VIPER7
Captain (CAPT)
Captain (CAPT)
Posts: 247
Joined: Fri Apr 15, 2005 2:49 pm

How to add menu items

Post by VIPER7 » Thu Jul 31, 2014 11:56 am

Is it possible to add links / menu items to the top menu bar, and if so, how?

User avatar
Katie
AbleCommerce Admin
AbleCommerce Admin
Posts: 2651
Joined: Tue Dec 02, 2003 1:54 am
Contact:

Re: How to add menu items

Post by Katie » Thu Jul 31, 2014 2:04 pm

It is in the \ConLib\StoreHeader.ascx file. Look for this code near the bottom -

Code: Select all

<div id="headerNavigation">
		<div class="navigation">
			<asp:HyperLink ID="HomeLink" runat="server" NavigateUrl="~/Default.aspx" CssClass="tab" Text="Home" />
			<asp:HyperLink ID="SearchLink" runat="server" NavigateUrl="~/Search.aspx" CssClass="tab" Text="Product Finder" />
			<asp:HyperLink ID="AdvSearchLink" runat="server" NavigateUrl="~/AdvancedSearch.aspx" CssClass="tab" Text="Advanced Search" />
			<asp:HyperLink ID="CurrencyLink" runat="server" NavigateUrl="~/Currencies.aspx" CssClass="tab" Text="Currencies" />
			<asp:HyperLink ID="ContactLink" runat="server" NavigateUrl="~/ContactUs.aspx" CssClass="tab" Text="Contact Us" />
		</div>
	</div>
Thank you for choosing AbleCommerce!

http://help.ablecommerce.com - product support
http://wiki.ablecommerce.com - developer support

VIPER7
Captain (CAPT)
Captain (CAPT)
Posts: 247
Joined: Fri Apr 15, 2005 2:49 pm

Re: How to add menu items

Post by VIPER7 » Thu Jul 31, 2014 2:13 pm

That worked great Katie! Thanks a million!

Post Reply