View Single Post
  #22  
Old 05-11-2006, 12:19 AM
  chamberinternet's Avatar 
chamberinternet chamberinternet is offline
 

X-Wizard
  
Join Date: Sep 2005
Location: Lancashire, UK
Posts: 1,471
 

Default

Hello ..

I did manage to get it working (with some help from the guys @ XCart Support)

This is how it's done:

Modify the "<xcart-dir>/include/categories.php" file:

1) find the following line (it is 290th in X-Cart v4.1.0 by default)

if (($current_area == "C" && defined("GET_ALL_CATEGORIES")) || defined('MANAGE_CATEGORIES')) {

2) replace it with the next one

if (($current_area == "C") || defined('MANAGE_CATEGORIES')) {


Then edit categories.tpl replace with the following code after {if $config.General.root_categories eq "Y"}


{foreach from=$categories item=c}
<font class="CategoriesList">{$c.category}</font>
<ul>
{foreach from=$allcategories item=cat}
{if $cat.parentid eq $c.categoryid}[*]<font class="CategoriesList">{$cat.category}</font>
{/if}
{/foreach}[/list]{/foreach}

Hope this helps ...

Regards

Shafiq :sK
__________________
Developing in 4.7.x now (Dipping into v5 - Slowly!)
Have used 4.1.x, 4.2.x, 4.4.x, 4.5.x, 4.6.x & 4.7.x
Multiple Instances of X-Cart
MySQL 5.6.37
CentOS 7.4


Chamber Internet
- Lancashire, United Kingdom
http://www.chamberelancs.co.uk
Reply With Quote