In last instructions I needed to made a little change:
========================================
In catalog/index.php:
-Search:
} elseif ($category_depth == 'products' || isset($HTTP_GET_VARS['manufacturers_id'])) {
LAST INSTRUCTIONS:
And add below:
$category_query = tep_db_query("select cd.categories_name, select cd.categories_description from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . (int)$current_category_id . "' and cd.categories_id = '" . (int)$current_category_id . "' and cd.language_id = '" . (int)$languages_id . "'");
$category = tep_db_fetch_array($category_query);
NEW INSTRUCTIONS:
And add below:
$category_query = tep_db_query("select cd.categories_name, cd.categories_description, c.categories_image from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . (int)$current_category_id . "' and cd.categories_id = '" . (int)$current_category_id . "' and cd.language_id = '" . (int)$languages_id . "'");
$category = tep_db_fetch_array($category_query);
========================================
Thanks, it is a very nice contribution
IT IS NOT COMPLETE PACKAGE
More...





LinkBack URL
About LinkBacks









Bookmarks