View Single Post
  #26  
Old 01-10-2006, 02:20 PM
 
Touchy Touchy is offline
 

Advanced Member
  
Join Date: Feb 2005
Location: USA
Posts: 49
 

Default Subscriptions Icon

Hey manage to get this working with help from 27stars and anoher forum link

Thought I'd shared in case anybody else is looking at this.

You need to go to the categories.php file and change the code

Original Code:

Code:
if ($short_list) { $to_search = "$sql_tbl[categories].categoryid,$sql_tbl[categories].parentid,$sql_tbl[categories].categoryid_path,$sql_tbl[categories].category,$sql_tbl[categories].product_count,$sql_tbl[categories].avail,$sql_tbl[categories].order_by"; } else { $to_search = "$sql_tbl[categories].*";

New code:

Code:
if ($short_list) { $to_search = "$sql_tbl[categories].categoryid,$sql_tbl[categories].description,$sql_tbl[categories].parentid,$sql_tbl[categories].categoryid_path,$sql_tbl[categories].category,$sql_tbl[categories].product_count,$sql_tbl[categories].avail,$sql_tbl[categories].order_by"; } else { $to_search = "$sql_tbl[categories].*";

Hope this helps.

The only thing else I'm trying to do is get the sub category description to display HTML like the product descriptions.

Can anybody help.
Still not very code with code.

Thanks
__________________
Thanks,

Version 4.0.17
Reply With Quote