locked
How to Show amount in Pound in PayPal Redirection RRS feed

  • Question

  • User-830780968 posted

     

    HI i would like to show amount in pound instead of doller($) in paypal Redirection after checkout.Could you please help me to show price in pound.

    Your order summary

    Descriptions                                                                                                                      Amount

    Order Number CSK-STD-UCWA8021UCOrder Number CSK-STD-UCWA8021UC  $7,014.00

    Item price:                                                                                                                         $7,014.00

    Quantity: 1

    Item total                                                                                                                                $7,014.00

    Total                                                                                                                                      $7,014.00 USD

     

    Sunday, April 17, 2011 7:32 AM

Answers

  • User60291871 posted

    Hi,

     

    You need to set the currency code in the form information posted to paypal. Here's an example 'Buy Now' buton:

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_xclick">
    <input type="hidden" name="business" value="test@compant.com">
    <input type="hidden" name="lc" value="GB">
    <input type="hidden" name="item_name" value="Widget">
    <input type="hidden" name="amount" value="12.65">
    <input type="hidden" name="currency_code" value="GBP">
    <input type="hidden" name="button_subtype" value="services">
    <input type="hidden" name="no_note" value="0">
    <input type="hidden" name="tax_rate" value="20.000">
    <input type="hidden" name="shipping" value="4.95">
    <input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">
    <input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Sunday, April 17, 2011 6:57 PM

All replies

  • User60291871 posted

    Hi,

     

    You need to set the currency code in the form information posted to paypal. Here's an example 'Buy Now' buton:

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_xclick">
    <input type="hidden" name="business" value="test@compant.com">
    <input type="hidden" name="lc" value="GB">
    <input type="hidden" name="item_name" value="Widget">
    <input type="hidden" name="amount" value="12.65">
    <input type="hidden" name="currency_code" value="GBP">
    <input type="hidden" name="button_subtype" value="services">
    <input type="hidden" name="no_note" value="0">
    <input type="hidden" name="tax_rate" value="20.000">
    <input type="hidden" name="shipping" value="4.95">
    <input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">
    <input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Sunday, April 17, 2011 6:57 PM
  • User-830780968 posted

    Thanks alot

    Monday, April 18, 2011 11:45 AM