http://mulberrystreetgifts.com/store/boyds/NEW_accessories.php
The problem is that all these page links have been added to 1 page in the SS back office.
If you look closely, you will notice that both drop down boxes loop through all of the page links, but clearly one set of links is named by category (i.e. Accessories...Treasure Boxes), while the other set is named by Year (2006...2012)
Is there any way to divide this 1 list of page links into 2 separate drop down boxes?
If it helps, here is what the page template looks like:
- Code: Select all
[-- DEFINE LINK_TO_PAGE --]
<!-- Output option HTML tag. The function menu_goto() adds base url -->
<option value="/[-- Page.FileName --]">[-- PAGE.Name --]</option>
[-- END_DEFINE LINK_TO_PAGE --]
[-- DEFINE PAGE --]
...
<form action="dummyvalue1">
Category:<br>
<select name="newurl" onChange="menu_goto(this.form)" id="search_field1" class="search"/>
<option value="" selected="selected">- Select a Category-</option>
[-- INCLUDE link-loop.php PROCESS --]
</select>
</form>
<form action="dummyvalue2">
Year:<br>
<select name="newurl" onChange="menu_goto(this.form)" id="search_field1" class="search"/>
<option value="" selected="selected">- Select a Year-</option>
[-- INCLUDE link-loop.php PROCESS --]
</select>
</form>
...
Product loop goes here
[-- END_DEFINE PAGE --]