This is a discussion on "Dynamenu" for osCommerce - Dynamic Fly-Out, Drop-Down, Tree Category Menu within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; A little fix to get the Dynamenu to work with the Multi-Stores multiple shop system. Line 246 in include/boxes/dm_categories.php: $result ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| A little fix to get the Dynamenu to work with the Multi-Stores multiple shop system. Line 246 in include/boxes/dm_categories.php: $result = tep_db_query('select c.categories_id, cd.categories_name, c.parent_id from ' . TABLE_CATEGORIES . ' c, ' . TABLE_CATEGORIES_DESCRIPTION . ' cd where c.categories_id = cd.categories_id and cd.language_id="' . (int)$languages_id .'" '.$parent_query.'order by sort_order, cd.categories_name'); change to: $result = tep_db_query('select c.categories_id, cd.categories_name, c.parent_id from ' . TABLE_CATEGORIES . ' c, ' . TABLE_CATEGORIES_DESCRIPTION . ' cd, ' . TABLE_CATEGORIES_TO_STORES . ' cc where c.categories_id = cd.categories_id and c.categories_id = cc.categories_id and cc.stores_id = "' . STORES_ID . '" and cd.language_id="' . (int)$languages_id .'" '.$parent_query.'order by sort_order, cd.categories_name'); More...
__________________ Michael Sasek osCMax Developer
|
| Sponsored Links | ||
| ||
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| "Dynamenu" for osCommerce - Dynamic Fly-Out, Drop-Down, Tree Category Menu | michael_s | New osCommerce Contributions | 0 | 11-25-2007 04:17 AM |
| "Dynamenu" for osCommerce - Dynamic Fly-Out, Drop-Down, Tree Category Menu | michael_s | New osCommerce Contributions | 0 | 10-12-2007 05:22 AM |
| "Dynamenu" for osCommerce - Dynamic Fly-Out, Drop-Down, Tree Category Menu | michael_s | New osCommerce Contributions | 0 | 04-05-2007 11:00 AM |
| "Dynamenu" for osCommerce - Dynamic Fly-Out, Drop-Down, Tree Category Menu | michael_s | New osCommerce Contributions | 0 | 03-15-2007 04:01 PM |
| "Dynamenu" for osCommerce - Dynamic Fly-Out, Drop-Down, Tree Category Menu | michael_s | New osCommerce Contributions | 0 | 02-21-2007 04:12 PM |