
Originally Posted by
Fireflyz
I'm having an issue with blank page. Here is the scenario when the problem happens:
.......
Here are the codes mentioned in debug:
lines 28 and 29 on free_gifts.php
Code:
define('TEXT_FREE_GIFT', 'Free gift with ' . $currencies->display_price($product_gift->fields['threshold']) . ' purchase.');
define('TEXT_DISCOUNT_GIFT', 'Only ' . $currencies->display_price($gift->fields['products_price'], zen_get_tax_rate($gift->fields['products_tax_class_id'])) . ' with ' . $currencies->display_price($product_gift->fields['threshold']) . ' purchase.');
And here is line 99 on currencies.php:
Code:
function display_price($products_price, $products_tax, $quantity = 1) {
return $this->format(zen_add_tax($products_price, $products_tax) * $quantity);
I'll take any help I can get.. throw me a bone!