This is a discussion on Dynamic SiteMap V 1.0 within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; To add Enable/Disable categories contribution compatibility so dynamic Site Map does not show disabled categories... in catalog/includes/classes/category_tree.php change: $categories_query = ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| To add Enable/Disable categories contribution compatibility so dynamic Site Map does not show disabled categories... in catalog/includes/classes/category_tree.php change: $categories_query = 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 . "' order by c.parent_id, c.sort_order, cd.categories_name"); to: $categories_query = 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 c.categories_status = '1' and cd.language_id = '" . (int)$languages_id . "' order by c.parent_id, c.sort_order, cd.categories_name"); More...
__________________ Michael Sasek osCMax Developer
|
| Sponsored Links | ||
| ||
| |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Google XML Sitemap w/ Admin | michael_s | New osCommerce Contributions | 0 | 03-07-2007 04:51 PM |
| Google XML Sitemap w/ Admin | michael_s | New osCommerce Contributions | 0 | 03-07-2007 10:10 AM |
| Google sitemap generator | michael_s | New osCommerce Contributions | 1 | 02-01-2007 03:14 PM |
| Google XML Sitemap Feed | michael_s | New osCommerce Contributions | 1 | 01-24-2007 01:15 PM |
| Google XML Sitemap Feed | michael_s | New osCommerce Contributions | 0 | 01-17-2007 01:10 PM |