Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Jan Fosgerau 65 posts 89 karma points
    Jun 22, 2010 @ 16:55
    Jan Fosgerau
    0

    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)

  • Hundebol 167 posts 314 karma points
    Jun 22, 2010 @ 17:29
    Hundebol
    0

    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

  • Jan Fosgerau 65 posts 89 karma points
    Jun 22, 2010 @ 17:34
    Jan Fosgerau
    0

    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

  • Biagio Paruolo 1621 posts 1914 karma points c-trib
    Jun 26, 2010 @ 21:29
    Biagio Paruolo
    0

    I think that not support DKK.

  • jaygreasley 416 posts 403 karma points
    Jun 27, 2010 @ 10:01
    jaygreasley
    0

    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

  • Jan Fosgerau 65 posts 89 karma points
    Jun 28, 2010 @ 11:51
    Jan Fosgerau
    0

    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.

     

     

  • Biagio Paruolo 1621 posts 1914 karma points c-trib
    Jun 28, 2010 @ 12:49
    Biagio Paruolo
    0

    From PayPal site:

    Buy and sell globally with PayPal's Multiple Currencies feature. Use your current PayPal account to make or accept payments in:

    • Canadian Dollars
    • Euros
    • British Pounds
    • U.S. Dollars
    • Yen
    • Australian Dollars
    • New Zealand Dollars
    • Swiss Francs
    • Hong Kong Dollars
    • Singapore Dollars
    • Swedish Kroner
    • Danish Kroner
    • Polish Zloty
    • Norwegian Kroner
    • Hungarian Forints
    • Czech Koruny
    • Israeli Shekels
    • Mexican Pesos
    • Brazilian Real (only for Brazilian users)
    • Malaysian Ringgits (only for Malaysian users)
    • Philippine Pesos
    • Taiwan New Dollars
    • Thai Baht

    Buyers:

     

    • Pay for purchases in your selected currency
    • Payment is automatically converted to your desired currency
    • No need to hold a balance in another currency to send a payment

    Sellers:

    • Accept payments directly in your selected currency
    • Manage multiple currency payments using your current PayPal account
    • Hold one currency balance and still accept payments in multiple currencies

    This link SimpleCart doc: http://simplecartjs.com/documentation.html ( view Currency )

  • Jan Fosgerau 65 posts 89 karma points
    Jun 28, 2010 @ 13:05
    Jan Fosgerau
    0

    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)

  • Biagio Paruolo 1621 posts 1914 karma points c-trib
    Jun 28, 2010 @ 13:11
    Biagio Paruolo
    0

    View in simplecart.js 29 row

    DanishKrone=DKK="DKK"

    or setup ( row 48 ) from me.currency = USD; to me.currency = DKK;

  • Jan Fosgerau 65 posts 89 karma points
    Jun 28, 2010 @ 13:11
    Jan Fosgerau
    0

    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 -

  • Jan Fosgerau 65 posts 89 karma points
    Jun 28, 2010 @ 13:57
    Jan Fosgerau
    0

    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

  • Biagio Paruolo 1621 posts 1914 karma points c-trib
    Jun 29, 2010 @ 09:14
    Biagio Paruolo
    0

    Hi, close post and send feedback. Thank you

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies