
Originally Posted by
lat9
What currencies are enabled for the site?
US Dollar, Australian Dollar, British Pounds, Bitcoin

Originally Posted by
lat9
What's additionally weird is that the $currency variable isn't set (in either stock Zen Cart or stock Bootstrap) except for on the order_status page.
The funny thing is I debug printed both variables and they ARE set.
Here's what $currency is set to:
Code:
Debug [0/0]:Array
(
[id] => AUD
[text] => $
[title] => Australian Dollar
)
$currencies->currencies:
Code:
Debug [0/0]:Array
(
[USD] => Array
(
[title] => US Dollar
[symbol_left] => $
[symbol_right] =>
[decimal_point] => .
[thousands_point] => ,
[decimal_places] => 2
[value] => 1.000000
)
[EUR] => Array
(
[title] => Euro
[symbol_left] => €
[symbol_right] =>
[decimal_point] => .
[thousands_point] => ,
[decimal_places] => 2
[value] => 0.773000
)
[GBP] => Array
(
[title] => GB Pound
[symbol_left] => £
[symbol_right] =>
[decimal_point] => .
[thousands_point] => ,
[decimal_places] => 2
[value] => 0.672600
)
[CAD] => Array
(
[title] => Canadian Dollar
[symbol_left] => $
[symbol_right] =>
[decimal_point] => .
[thousands_point] => ,
[decimal_places] => 2
[value] => 1.104200
)
[AUD] => Array
(
[title] => Australian Dollar
[symbol_left] => $
[symbol_right] =>
[decimal_point] => .
[thousands_point] => ,
[decimal_places] => 2
[value] => 1.178900
)
)
Bookmarks