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.
© Copyright 2013-2017 DrupalExp - All Rights Reserved
Hello renzet,
You can modify template to help more flexible by using code as below:
$total = $sym."0.00";
Thank you.