I am using layout 9 for my store. I am trying to change frame.html in layout 9 to work like frame.html in layout 8 - in that the manufacturer search is displayed as a dropdown box instead of a listing.
I have modified the code and it doesn't work :(
Not surprising as I don't have much web development experience - but I do have a lot of db design experience so I think I can catch on.
Anyway here's my code - I haven't changed anything else in the file:
I'm using the assumption that <!-- and --> are comment tags.
Just wondering if anyone sees something obvious like an open comment or html tag. (missing '>' for example) that I'm not seeing.
This works in that it displays the dropdown box - but it does not populate the box, and the word 'Manufacturer' is displayed under the box.
I have modified the code and it doesn't work :(
Not surprising as I don't have much web development experience - but I do have a lot of db design experience so I think I can catch on.
Anyway here's my code - I haven't changed anything else in the file:
Code:
<!--END: FRAME_CATEGORY--> <!--START: FRAME_MANUFACTURER--> <!-- Modified January 30, 20008 by Cekman - Cobweb Corner Change to display Manufacturer in drop-down box rather than listing Removed comments on line immediately following this line. Commented out first Start Manufacturer format block and removed comments from second Manufacturer format block, and end form line --> <form name="mfg" id="mfg" method="post" action="search_groups.asp?"> <TABLE width="160" cellspacing="0" cellpadding="0" border="0"> <tr> <td class="menu-headers">[frame_manufacturer]</td> </tr> <!--START: manufacturer_format--> <!-- <tr><td><a href="search_groups.asp?manf=[mfgid]" class="cat"><span class="icon">ยป</span>[manufacturer]</a></td></tr> --> <!--END: manufacturer_format--> <select name="manufacturer" onchange="this.form.submit();"> <option value=0 selected>Manufacturer</option> <!--START: manufacturer_format--> <option value=[mfgid]>[manufacturer]</option> <!--END: manufacturer_format--> </select> </TABLE> </form> <!--END: FRAME_MANUFACTURER-->
Just wondering if anyone sees something obvious like an open comment or html tag. (missing '>' for example) that I'm not seeing.
This works in that it displays the dropdown box - but it does not populate the box, and the word 'Manufacturer' is displayed under the box.
Comment