#16

dudy's picture
Offline
Joined: 02/16/2010
Juice: 7
#16

Hi mstrelan,

I have found a little bug in your code. while checking out - price was always 0.
FIX (in function theme_uc_decimal_quantities_cart_review_table):

$base_array = array(
$quantity_cell,
array('data' => $description, 'class' => 'products'),
// Original:
// array('data' => uc_price($price, $context), 'class' => 'price'),
// New:
array('data' => uc_price($price_info, $context), 'class' => 'price'),
);

Please apply this fix if you have a zero amount in checkout form.

Regards,
Dudy

Abiility to have decimal quantities By: Dan-902 (42 replies) Thu, 08/14/2008 - 15:43