How do you get the category href url?
I am customizing my menu and need to setup the links for each category id that it loops through what is the code to create the links?
Here's my code so far:
{if $cat eq $categories[cat_num].categoryid || $current_category.parentid eq $categories[cat_num].categoryid}
<img src="{$ImagesDir}/menutitle/{$cat}.jpg" align="absbottom" style="border-bottom: 1px solid white">
{section name=subcat loop=$allcategories}
{if $allcategories[subcat].parentid eq $categories[cat_num].categoryid}
<div style="background-color: #D8ECED; border-bottom: 1px solid white; font-color: #271E3D; font-family: tahoma font-size: 11px">
<div style="padding-top: 6px; padding-bottom: 6px"> <img src="{$ImagesDir}/left-arrow2.jpg" width="3" height="5" alt=">">
<a href="home.php?cat={$somethinghere}" class="menulink1">{$allcategories[subcat].category}</a>
</div></div>
{/if}
{/section}
{/if}
__________________
Xcart 4.0.19
|