al3ks, on 31 July 2012 - 02:33 PM, said:
Glad you got it working. it took me ages to find that when i had installed it.
Posted 31 July 2012 - 02:41 PM
al3ks, on 31 July 2012 - 02:33 PM, said:
Posted 29 August 2012 - 03:55 PM
Posted 29 August 2012 - 04:34 PM
Posted 05 October 2012 - 01:06 AM
Edited by grandpaj, 05 October 2012 - 01:10 AM.
Posted 05 October 2012 - 03:05 AM
Posted 05 October 2012 - 07:10 AM
Posted 05 October 2012 - 01:15 PM
Posted 05 October 2012 - 08:40 PM
Posted 05 October 2012 - 11:49 PM
Posted 06 October 2012 - 12:21 AM
Posted 11 October 2012 - 01:46 PM
Posted 11 October 2012 - 02:22 PM
$products_query = tep_db_query("select m.manufacturers_id, m.manufacturers_name from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id left join " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c on p2c.products_id = p.products_id left join " . TABLE_CATEGORIES . " c on p2c.categories_id = c.categories_id where p.products_status > 0 and c.categories_id = " . $mapCID);
to
$products_query = tep_db_query("select m.manufacturers_id, m.manufacturers_name from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id left join " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c on p2c.products_id = p.products_id left join " . TABLE_CATEGORIES . " c on p2c.categories_id = c.categories_id where p.products_status > 0 and p.products_quantity > 0 and c.categories_id = " . $mapCID);
Posted 11 October 2012 - 03:18 PM
$categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c left join " . TABLE_CATEGORIES_DESCRIPTION . " cd on c.categories_id = cd.categories_id where c.categories_status = '1' and cd.language_id = '" . (int)$languages_id . "' order by c.parent_id, c.sort_order, cd.categories_name");
I changed the line like you suggested in includes/modules/sitemap_manufacturers.php and includes/modules/sitemap.php, but unfortunately it didn't change how the manufacturers are being displayed. Any other ideas?
Posted 11 October 2012 - 03:21 PM
Posted 25 October 2012 - 05:14 PM
Fatal error: Cannot redeclare in_multi_array() (previously declared in /home/****/public_html/includes/functions/general.php:1377) in /home/*****/public_html/includes/functions/sitemap.php on line 132
Posted 25 October 2012 - 05:44 PM
in_multi_arrayand change it to something else, like
sitemap_in_multi_array
Posted 25 October 2012 - 06:08 PM
Posted 25 October 2012 - 09:49 PM
Posted 26 October 2012 - 03:29 AM