Simple Shopping Cart always shows $0.00 no matter what currency the shop uses.

In sites/all/default/themes/orane/templates/views/views-view--simple-shopping-cart--block.tpl.php in line 10 this is hardcoded:

$total = '€0.00';

For my shop I only use euro so I changed the template but this could be more flexible I think.

Hello renzet,

You can modify template to help more flexible by using code as below:

$cur=commerce_currency_load();
$sym=$cur['symbol'];

$total = $sym."0.00";

Thank you.