Open Cube Quick Menu Integration

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
lastrom
Ensign (ENS)
Ensign (ENS)
Posts: 13
Joined: Fri Jul 31, 2009 7:46 am

Open Cube Quick Menu Integration

Post by lastrom » Fri Sep 11, 2009 10:20 am

Hello all! I'm trying to integrate some SEO friendly 3rd party navigation software into an AbleCommerce control and I'm having some problems. This is the structure of the text based navigation menu I need to generate (categories and sub categories):

Code: Select all

<ul id="qm0" class="qmmc">

	<li><a class="qmparent" href="javascript:void(0);">Top Level Category 1</a>

		<ul>
		<li><a class="qmparent" href="javascript:void(0);">Sub Category 1</a>
		
		  <ul>
		  <li><a href="javascript:void(0);">Sub Sub Category 1</a></li>
		  <li><a href="javascript:void(0);">Sub Sub Category 2</a></li>
		  <li><a href="javascript:void(0);">Sub Sub Category 3</a></li>
		  </ul></li>
		  
		<li><a href="javascript:void(0);">Sub Category 2</a></li>
		<li><a href="javascript:void(0);">Sub Category 3</a></li>
		</ul></li>

	<li><a class="qmparent" href="javascript:void(0);">Top Level Category 2</a>

		<ul>
		<li><a href="javascript:void(0);">Sub Category 1</a></li>
		<li><a href="javascript:void(0);">Sub Category 2</a></li>
		<li><a href="javascript:void(0);">Sub Category 3</a></li>
		<li><a href="javascript:void(0);">Sub Category 4</a></li>
		</ul></li>

	<li><a href="javascript:void(0);">Top Level Category 3</a></li>
	<li><a href="javascript:void(0);">Top Level Category 4</a></li>
	<li><a href="javascript:void(0);">Top Level Category 5</a></li>

<li class="qmclear"> </li></ul>
I started with the AllCategories control, but that doesn't have all the code for generating code like the above. I've looked through the forum and all the other ideas seem to be using the ASP.NET Menu. Unfortunately that is an unacceptable control to use because it is not as flexible, search engine friendly or as compatible as the list based navigation. Any ideas on how to generate the categories and sub categories in the above structure?

Thanks! Any help is appreciated!
- Lars

mwolf
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 50
Joined: Mon Jul 02, 2007 9:37 pm
Location: Chicago, IL
Contact:

Re: Open Cube Quick Menu Integration

Post by mwolf » Mon Sep 14, 2009 7:54 am

You are going to have to build your own custom menu to get it to display in this format. We are currently working on something very similar to what you are trying to achieve... Contact me if you would be interested in seeing an example & hearing more about it.

Post Reply