Message Text |
When trying to speed things up I hard coded a drop down list of sub-categories below catid 32. However, as I am continually adding sub-cats here I have just put in the toplist to produce it again. It is exactly the one I used before v.5.0.21 and it worked perfectly before, however, now it doesn't generate the link correctly, merely putting in 0 for each sub-cat and thus throw a no page here error.
<form action="redirecttourl.php" >
<select name="catid" onChange="form.submit();" >
<option value="0">Search by Store</option>
<!-- BEGIN TOPLIST 21 -->
<CONFIG>categories,name;id,200,ascending,parent='13' ,,,0,0,0,0,0,0,,0</CONFIG>
<option value="{CATID}">{CATNAME}</option>
<!-- END TOPLIST 21 -->
</select>
</form>
[edit] I just noticed a semi-colon after name in the config. I regenerated a toplist code which produced the config: <CONFIG>categories,name,200,ascending,parent='13',,, 0,0,0,0,0,0,,0</CONFIG>
but that still doesn't work. |