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
