X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   How do I... Question regarding Category List (https://forum.x-cart.com/showthread.php?t=32416)

creativearc 07-09-2007 08:54 AM

How do I... Question regarding Category List
 
I have added some javascript effects to my category list. It works great, except for a few things. What happens with the javascript - is the subcategories are displayed in the left category list when they click on a category. The links work great off the home page, but when someone gets to a subcategory page, then it falls apart a bit.

This code needs to work on any page, and it is screwed up whenever there is a ?cat=(number). Any ideas how to fix this? (this is a snippet from the /customer/categories.tpl)

Code:

{if $config.General.root_categories eq "Y"}
{foreach from=$categories item=c}
<dt class="category-menu" style="cursor: pointer">{$c.category}</dt>
        {if $subcategories}
                <dt class="subcategory-menu">
                {foreach from=$subcategories item=c key=catid}
                        <a href="home.php?cat={$catid}" class="VertMenuItems">&nbsp;&nbsp;&nbsp;&nbsp;- {$c.category}</a><br />
                {/foreach}
                </dt>
        {/if}
{/foreach}
{else} {foreach from=$subcategories item=c key=catid}
<font class="CategoriesList"><a href="home.php?cat={$catid}" class="VertMenuItems">{$c.category}</a></font><br />
{/foreach}
{/if}


carpeperdiem 07-09-2007 09:13 AM

Re: How do I... Question regarding Category List
 
CDSEO will eliminate the "?cat=(number)" and your categories will look like www.domain.com/category_header/category_name

This may solve your issue. Maybe.

creativearc 07-09-2007 09:19 AM

Re: How do I... Question regarding Category List
 
There's got to be a way to just always read the categories and subcategories the same, no matter what page or category someone is browsing...


All times are GMT -8. The time now is 01:25 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.