Skip to main content

PayPal Community

  • Dashboard
  • Send and Request
  • Wallet
  • Business
  • Help
Log in
  • Welcome
    • Guidelines
    • News and Events
    • Suggestions for PayPal
    • General Discussions
  • PayPal Help Community
    • Managing Account
    • Transactions
    • Wallet
    • Security and Fraud
    • Products & Services
    • Reporting
  • MTS Community
    • PayPal Upgrade Community
    • PayPal Payments Standard
    • REST APIs
    • NVP/SOAP APIs
    • SDKs
    • Sandbox Environment
    • PayPal Reporting
    • Payflow
    • Ideas for MTS
    • Client-side Integration
    • Server-side Integration
  • The Archives
    • PayPal Help Community Archives
      • Managing Account Archives
      • Transactions Archives
      • Wallet Archives
      • Security and Fraud Archives
      • Products & Services Archives
      • Reporting Archives
    • Help Community
      • PayPal Basics Archives
      • Payments Archives
      • My Money Archives
      • My Account Archives
      • Disputes and Limitations Archives
      • Products and Services Archives
      • PayPal Credit Archives
    • Merchant Community
      • Merchant Products
      • Business Tools Archives
      • Reporting Archives
      • Managing Risk and Fraud Archives
    • Help Archives
      • About Business (Archive)
      • About Payments (Archive)
      • About Settings (Archive)
      • About eBay (Archive)
      • About Protections (Archive)
      • About Products (Archive)
    • Social and Your Voice Archives
      • Off Topic (Archive)
      • My Feedback for PayPal (Archive)
    • About PayPal Archives
      • Watercooler (Archive)
      • Tax Information (Archive)
      • Fees (Archive)
      • eBay and PayPal (Archive)
      • Coupons and promotions (Archive)
    • My Account Archives
      • My account settings (Archive)
      • Account limits and verification (Archive)
      • Account balance (Archive)
      • Bank accounts and credit cards (Archive)
    • Payments Archives
      • Sending money (Archive)
      • Receiving money (Archive)
      • Refunds (Archive)
      • Donations and Fundraising (Archive)
    • Disputes and Security Archives
      • Disputes and claims (Archive)
      • Fraud, phishing and spoof (Archive)
    • My Business Archives
      • Merchant services (Archive)
      • Reporting and tracking (Archive)
      • Shipping (Archive)
    • PayPal Products Archives
      • PayPal Debit Mastercard (Archive)
      • PayPal Extras MasterCard (Archive)
      • PayPal Mobile & Other Services (Archive)
      • Student Accounts (Archive)
      • Bill Me Later (Archive)
    • Getting to know PayPal
      • My PayPal account
      • Security and protection
    • Receiving and sending money
      • Buying with PayPal
      • Selling with PayPal
    • PayPal Here UK
      • PayPal Here News and Events
      • PayPal Here Community
      • Chip and Pin Card Reader
      • PayPal Here App

The Community Forum will no longer be available starting June 30, 2025. Please note that the forum is now closed for new posts and responses, but previous posts will remain accessible for review until June, 30 2025. For comprehensive support options, please visit PayPal.com/HelpCenter
Merchant Technical Support: For technical support and related questions, please visit our Technical Support Help Center or Developer Central

If you want to report illegal content under the EU Digital Services Act, please do so here

since ‎Jan-29-2013
romantic2807
romantic2807 Contributor
Contributor
4
Posts
0
Kudos
0
Solutions
Your 3rd PayPal Anniversary
Your PayPal Anniversary
Your 5th PayPal Anniversary
The Return
Organized
Ice Breaker
Active
View all
Topics romantic2807 has Participated In
  • Topics romantic2807 has Participated In
  • Latest Contributions by romantic2807

Re: Paypal Verified button (logo)

by snowshoe Frequent Advisor in About Business (Archive)
‎Feb-12-2013 05:47 PM
1 Kudo
‎Feb-12-2013 05:47 PM
1 Kudo
You could.  ... View more

Re: multicurrency shopping cart

by snowshoe Frequent Advisor in About Business (Archive)
‎Feb-12-2013 05:45 PM
‎Feb-12-2013 05:45 PM
One method of changing currency is to allow the customer to choose.  The item button code needs to be manually coded as the online button creator does not have the capability you need.   See the example below:   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Button Example Code</title> <!-- START META TAG SECTION --> <meta charset="utf-8"> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <meta http-equiv="Content-Language" content="en"> <!-- END META TAG SECTION --> </head> <body> <!-- START SAMPLE CODE SECTION --> <!-- PARAGRAPH 1 --> Currency &amp; Country Code Examples <br><br> Buy Now with option for paying in a different currency. <br><br><br> Widget - $5.00 USD <br><br> <!-- Start of Buy Now Form --> <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <!-- If using a Business or Company Logo Graphic, include the "cpp_header_image" variable in your View Cart code. --> <input type="hidden" name="cpp_header_image" value="https://www.yourwebsite.com/logo.jpg"> <input type="hidden" name="cmd" value="_xclick"> <!-- Replace "business" value with your PayPal Email Address or Account ID --> <input type="hidden" name="business" value="your @ emailaddress.com"> <input type="hidden" name="item_name" value="Widget"> <input type="hidden" name="item_number" value="W-1001"> <input type="hidden" name="amount" value="5.00"> <input type="hidden" name="no_shipping" value="2"> <!-- Replace value with the web page you want the customer to return to after a successful transaction --> <input type="hidden" name="return" value="http://www.yourwebsite.com/ThankYou.html"> <!-- Replace value with the web page you want the customer to return to after item cancellation --> <input type="hidden" name="cancel_return" value="http://www.yourwebsite.com/Cancel.html"> Please Select Your Currency:&nbsp;&nbsp; <select name="currency_code"> <option value="USD" selected>U.S. Dollars</option> <option value="CAD">Canadian Dollars</option> <option value="GBP">Pounds Sterling</option> <option value="JPY">Yen</option> <option value="EUR">Euros</option> <option value="AUD">Australian Dollars</option> <option value="NZD">New Zealand Dollars</option> <option value="CHF">Swiss Francs</option> <option value="HKD">Hong Kong Dollars</option> <option value="SGD">Singapore Dollars</option> <option value="SEK">Swedish Kronor</option> <option value="DKK">Danish Kroner</option> <option value="PLN">Polish Zloty</option> <option value="NOK">Norwegian Kroner</option> <option value="HUF">Hungarian Forint</option> <option value="CZK">Czech Koruna</option> <option value="ILS">Israeli Shekels</option> <option value="MXN">Mexican Pesos</option> </select> <input type="hidden" name="lc" value="US"> <input type="hidden" name="button_subtype" value="products"> <input type="hidden" name="no_note" value="0"> <input type="hidden" name="cn" value="Add special instructions to the seller:"> <input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynow_LG.gif:NonHosted"> <br><br> <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form> <!-- End of Form --> <!-- END BUTTON EXAMPLES --> <!-- END SAMPLE CODE SECTION --> <br><br><br><br> <hr align="left" width="50%" noshade> <br><br> NOTES: <br> In order to test the code, you must replace the &quot;business&quot; value variable with your PayPal Email Address or Account ID. </body> </html>   ... View more

Re: changing country in shipping address in busine...

by snowshoe Frequent Advisor in About Business (Archive)
‎Jan-29-2013 07:06 AM
‎Jan-29-2013 07:06 AM
If you want to use a PayPal product, suggest checking out Payments Pro.  With Pro, you do all the  logic and pass the credit card info to PayPal for processing.  The customer remains on your web site or page to complete the checkout process unlike Payments Standard where the customer is sent to PayPal to complete the checkout process.  Pro does have a monthly fee of $30. ... View more
Paypal Logo
  • Help
  • Contact Us
  • Security
  • Fees
  • © 1999-2025 PayPal, Inc. All rights reserved.
  • Privacy
  • Legal
  • Cookies
  • Policy Updates

The money in your balance is eligible for pass-through FDIC insurance.

The PayPal Cash Mastercard is issued by The Bancorp Bank pursuant to a license by Mastercard International Incorporated. The Bancorp Bank; Member FDIC.

Powered by Khoros
Welcome to the PayPal Community!