find
Code:
function zen_update_products_price_sorter($product_id) {
global $db;
$products_price_sorter = zen_get_products_actual_price($product_id);
$db->Execute("update " . TABLE_PRODUCTS . " set
products_price_sorter='" . zen_db_prepare_input($products_price_sorter) . "'
where products_id='" . $product_id . "'");
}
in admin\includes\functions\ functions_prices.php
and replace with
Code:
/*function zen_update_products_price_sorter($product_id) {
global $db;
$products_price_sorter = zen_get_products_actual_price($product_id);
$db->Execute("update " . TABLE_PRODUCTS . " set
products_price_sorter='" . zen_db_prepare_input($products_price_sorter) . "'
where products_id='" . $product_id . "'");
}*/
then make sure to save and re-upload....
then close browser and reopen the browser window to clear cache
I know that file is included in the download however that function is loaded by zen cart by default, so it dosnt need to be there in the new file