Complet, without a small bug
A small thing in amin/includes/boxes/reports.php.
changes
'' . BOX_REPORTS_STOCK_LEVEL . '');
to
'' . BOX_REPORTS_STOCK_LEVEL . '');
here is a other thing if you want to changes it. The prices without ( )
Changes in catalog/include/classes/pad_base.php line:
$products_options_array[sizeof($products_options_array)-1]['text'] .= ' ('
. $currencies->display_price( $show_price, tep_get_tax_rate($this->products_tax_class_id)) .') '; // note $this variable //HW: THIS WAS BROKEN - tax class ID was being used as the tax rate.. so a fixed 8 percent in my case.
to
$products_options_array[sizeof($products_options_array)-1]['text'] .= ' '
. $currencies->display_price( $show_price, tep_get_tax_rate($this->products_tax_class_id)) .' '; // note $this variable //HW: THIS WAS BROKEN - tax class ID was being used as the tax rate.. so a fixed 8 percent in my case.
or
$products_options_array[sizeof($products_options_array)-1]['text'] .= ' '
. $currencies->display_price( $show_price, tep_get_tax_rate($this->products_tax_class_id)) .' '; // note $this variable //HW: THIS WAS BROKEN - tax class ID was being used as the tax rate.. so a fixed 8 percent in my case.
More...




LinkBack URL
About LinkBacks









Bookmarks