I have the standard category section list on the left panel on my site, below the cart display, but on the search results page, the category list disappears. Does anyone know why this is happening and how I can get this to be visible?
Announcement
Collapse
No announcement yet.
Category List Missing
Collapse
X
-
Hi Richard,
This is normal, on searching or checking out, the Catagory list will be missing. The idea behind this is that on checkout, you want the client to checkout and not give them any option to go back to the store, unless they click on "Cancel".
If you want to change this, then you need to edit your "Act_Primary.html" and find a variable called "NETQUOTEVAR:TOPLEVELSECTIONTOP".
Simply remove this, as you cannot use this, and check the advance user guide.
Here look for the section entitled Creating a List of Hyperlinks with Sections and Sub-sections, and implement it.
This will show the sections and sub section. If you want it to just show the main section, then simply use the following code
Code:<!--@act NETQUOTEVAR:SECTIONTREE_RAW --> <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"> <!-- function SectionList(ar) { var strIDs = '<table border=0 width=95% cols=2>'; for (var i=1;i<=ar.length;i++) { if (ar[i].sURL !=null) { strIDs += '<tr><td colspan=2><a href="' + ar[i].sURL + '"><span class="actxxsmall"><font color=white>' + ar[i].sName + '</font></span></a></td></tr>'; } } strIDs += '</table>' return strIDs } //--> </SCRIPT>
Nadeem Rasool
SellerDeck Development
Comment