Edit the file:
/includes/modules/category_icon_display.php
and change the code from:
Code:if (!defined('IS_ADMIN_FLAG')) { die('Illegal Access'); } if ($cPath == '') { $cPath= zen_get_product_path((int)$_GET['products_id']); }Code:if (!defined('IS_ADMIN_FLAG')) { die('Illegal Access'); } if ($cPath == '' || $cPath == 0) { $cPath= zen_get_product_path((int)$_GET['products_id']); } if (!isset($_GET['cPath']) || $_GET['cPath'] == '') $_GET['cPath'] = $cPath; $cPath_new = zen_get_path(zen_get_products_category_id((int)$_GET['products_id']));



