Well i tried putting in DKK but it diddent do anything -
its not so much as paypal supports DKK i know that.
but the Script it self is suposed to change the symbol $ £ . etc .etc to DKK / dk / kroner - something along that line when i add DKK in the currency but it doesent.
as it is now it shows the ERUO symbol in the checkout.
but if i add in the correct code for Danish Kroner = DKK
simpleCart.currency = DKK;
nothing happens it reverts to its default which is $ = US Dollars.
im thinking that the script isent set up for Danish Kroner or there is misunderstanding on the correct currency Term to be used. (DKK being the right one)
DKK was in the script - but it diddent have a symbol for the total value and shelf value.
me.currencySymbol = function() { switch(me.currency){ case JPY: return "¥"; case DKK: //added this myself return "Kr,- "; //added this myself case EUR: return "€"; case GBP: return "£"; case USD: case CAD: case AUD: case NZD: case HKD: case SGD: return "$"; default: return ""; } };
simpleCart question - Danish kroner - using simplecart in umbraco
Anyone here work with this and been able to change the currency in it to DKK - Danish Kroner ?
if i can get this working i got a functional webshop for my umbraco.
(though currently ill suffer through using EURO)
Hi Jan,
At the top of the SimpleCart javascript file you can set me.currency = DKK;
Don't know i that helps?
If you are using google checkout you can however only use USD or EUR.
Best regards,
Hundebol
Yeh i tried that and it doesent register - im thinking that the script isent set up for Danish currency ?
EUR works fine and also managed to get GBP in there
I think that not support DKK.
Hi,
What payment gateway are you using? Google Checkout only supports GBP and USD. Paypal allows DKK tho'
http://www.paypal.com/cgi-bin/webscr?cmd=p/sell/mc/mc_intro-outside
Jay
Well i tried putting in DKK but it diddent do anything -
its not so much as paypal supports DKK i know that.
but the Script it self is suposed to change the symbol $ £ . etc .etc to DKK / dk / kroner - something along that line when i add DKK in the currency but it doesent.
From PayPal site:
Buy and sell globally with PayPal's Multiple Currencies feature. Use your current PayPal account to make or accept payments in:
Buyers:
Sellers:
This link SimpleCart doc: http://simplecartjs.com/documentation.html ( view Currency )
I know that i need to alter the
simpleCart.currency = EUR;
as it is now it shows the ERUO symbol in the checkout.
but if i add in the correct code for Danish Kroner = DKK
simpleCart.currency = DKK;
nothing happens it reverts to its default which is $ = US Dollars.
im thinking that the script isent set up for Danish Kroner or there is misunderstanding on the correct currency Term to be used. (DKK being the right one)
View in simplecart.js 29 row
DanishKrone=DKK="DKK"
or setup ( row 48 ) from me.currency = USD; to me.currency = DKK;
Ok - i just ran a check - it does send it to Paypal as DKK - so no problem on that end
problem is the script on the webpage shows it as $
would really prefer it to be DKK or Danish Kroner or Kroner
will attempt to fiddle with the script it self to just show DKK and nothing else -
Problem solved.
DKK was in the script - but it diddent have a symbol for the total value and shelf value.
me.currencySymbol = function() {
switch(me.currency){
case JPY:
return "¥";
case DKK: //added this myself
return "Kr,- "; //added this myself
case EUR:
return "€";
case GBP:
return "£";
case USD:
case CAD:
case AUD:
case NZD:
case HKD:
case SGD:
return "$";
default:
return "";
}
};
thanx though for everyones feedback
Hi, close post and send feedback. Thank you
is working on a reply...