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 is not available for new posts or responses; previous posts remain available to review. 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 ‎Feb-19-2022
Country: United States
Type: Business
Nexus_Software
Nexus_Software Contributor
Contributor
47
Posts
15
Kudos
6
Solutions
Your PayPal Anniversary
Solver
Admired
Neighborly
Giving
Esteemed
Sociable
Helper
Friendly
Liked
New Look
The Return
Ice Breaker
View all
Latest Contributions by Nexus_Software
  • Topics Nexus_Software has Participated In
  • Latest Contributions by Nexus_Software
  • « Previous page
    • 1
    • 2
    • 3
    • 4
  • Next page »

Re: How to fill billing fields?

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-11-2022 09:03 AM
1 Kudo
‎Mar-11-2022 09:03 AM
1 Kudo
Hello @thierryler ,   One way to prepopulate the billing fields is to add the payer -> address object E.g. paypal.Buttons({ // Sets up the transaction when a payment button is clicked createOrder: function(data, actions) { return actions.order.create({ payer: { birth_date: '2021-01-01', email_address: 'customer_at_emailaddress', phone: { phone_number: { national_number[Removed. Phone #s not permitted], } }, name: { given_name: 'Bub', surname: 'Customer', }, address: { address_line_1: '33 ABC Street', address_line_2: 'Apt 3', admin_area_2: 'San Jose', admin_area_1: 'CA', postal_code: '95121', country_code: 'US', }, }, purchase_units: [{ amount: { value: '33.00' // Can reference variables or functions. Example: `value: document.getElementById('...').value` } }] }); },         Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers     ... View more

Re: How do you change the business logo that appea...

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-11-2022 05:03 AM
‎Mar-11-2022 05:03 AM
Hello @jaydusold ,   Using PayPal Standard buttons, you can specify the business logo with the image_url input. E.g. , <input type="hidden" name="image_url" value="https://nexwebsites.com/images/software-development-company.png">   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers   ... View more

Re: SetExpressCheckout with CreateRecurringPayment...

by Nexus_Software Contributor in NVP/SOAP APIs
‎Mar-04-2022 02:39 PM
‎Mar-04-2022 02:39 PM
Hello @iceget ,   Can you try using INITAMT and FAILEDINITAMTACTION? These are the parameter names for the CreateRecurringPaymentsProfile API Operation (NVP) which corresponds with your other parameters. INITAMT (Optional) Initial non-recurring payment amount due immediately upon profile creation. Use an initial amount for enrollment or setup fees. Note: All amounts included in the request must have the same currency. Character length and limitations: `partial:partials/docs/shared/cl_currencylimit.en-XC` FAILEDINITAMTACTI ON (Optional) Action you can specify when a payment fails. Value is: ContinueOnFailure — By default, PayPal suspends the pending profile in the event that the initial payment amount fails. You can override this default behavior by setting this field to ContinueOnFailure. Then, if the initial payment amount fails, PayPal adds the failed payment amount to the outstanding balance for this recurring payment profile. When you specify ContinueOnFailure, a success code is returned to you in the CreateRecurringPaymentsProfile response and the recurring payments profile is activated for scheduled billing immediately. You should check your IPN messages or PayPal account for updates of the payment status. CancelOnFailure — If this field is not set or you set it to CancelOnFailure, PayPal creates the recurring payment profile, but places it into a pending status until the initial payment completes. If the initial payment clears, PayPal notifies you by IPN that the pending profile has been activated. If the payment fails, PayPal notifies you by IPN that the pending profile has been canceled.   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: redirecthing from the shop to paypal shows Err...

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-04-2022 01:54 PM
‎Mar-04-2022 01:54 PM
Hello @vpichler_kork ,   Are you still having this issue? If so, what would be the URL of a page where the issue is encountered from?   Depending on the plugin, customers may see this error if  Encrypted Website Payments in the PayPal admin is set to ON. Setting it to OFF  can resolve the issue.   Thank you.   Powered by Custom Software : <removed> PayPal Developers ... View more

Re: Since mid-January, I'm not getting complete da...

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-04-2022 02:53 AM
‎Mar-04-2022 02:53 AM
Hello @RogerHarris ,   The PDT is the sending the business (merchant), the receiver_email, the verify_sign and all of the following example variables. You may be able to use  : verify_sign or another of the sent values to verify the transaction. mc_gross = 33.00 protection_eligibility = Eligible address_status = confirmed payer_id = K3U3VMDRHQH9C tax = 0.00 address_street = 1+Main+St payment_date = 02%3A27%3A59+Mar+04%2C+2022+PST payment_status = Completed charset = UTF-8 address_zip = 95131 first_name = facilitator mc_fee = 1.64 address_country_code = US address_name = facilitator+account%27s+Test+Store custom = Testing+custom+2 payer_status = verified business = sb-kh32s12060300%40business.example.com address_country = United+States address_city = San+Jose quantity = 1 payer_email = sales-facilitator%40nexwebsites.com txn_id = 5VC49721MS6241223 payment_type = instant payer_business_name = facilitator+account%27s+Test+Store last_name = account address_state = CA receiver_email = sb-kh32s12060300%40business.example.com payment_fee = 1.64 shipping_discount = 0.00 insurance_amount = 0.00 receiver_id = PNMANCRMNMTJJ txn_type = web_accept item_name = Testing+PDT discount = 0.00 mc_currency = USD item_number = residence_country = US shipping_method = Default handling_amount = 0.00 transaction_subject = payment_gross = 33.00 shipping = 0.00   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: help with custom fields

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-04-2022 02:10 AM
‎Mar-04-2022 02:10 AM
Hello @W7AIA ,   One way to include custom data for a PayPal Sstandard button is to use the <input name = "custom"> E.g. <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="34HWEWGF2UAAY"> Enter a Message to the Seller: <textarea name="custom"></textarea> <input type="image" src="https://www.sandbox.paypal.com/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.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form>   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: Cannot find "Choose a way to integrate"

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-03-2022 10:20 AM
‎Mar-03-2022 10:20 AM
Hello @topearner1 ,   Did you see the documentation at : https://givewp.com/documentation/core/payment-gateways/paypal-donations/?   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: I want to connect paypal account to Samcart.

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-03-2022 10:12 AM
‎Mar-03-2022 10:12 AM
Hello @Thriva ,   The Samcart documentation for connecting PayPal is at : https://help.samcart.com/support/solutions/articles/60000648059-paypal   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: help needed to install pay in 3 checkout onto ...

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-03-2022 04:44 AM
‎Mar-03-2022 04:44 AM
Hello @HarryKaplan ,   To implement the UK Pay Later Button passing dataAttributes.amount when calling loadPayPalSDK is required for the Pay Later button to render. If you have existing standalone PayPal buttons on your page, be sure to also call isEligible() before rendering each button as in the example below.   paypalCheckoutInstance.loadPayPalSDK({ components: 'buttons,messages' currency: 'USD', 'enable-funding': 'paylater', dataAttributes: { amount: '10.00' } // Other config options here }, function () { var button = paypal.Buttons({ fundingSource: paypal.FUNDING.PAYLATER, createOrder: function () { return paypalCheckoutInstance.createPayment({ flow: 'checkout', // Required amount: '10.00', // Required currency: 'USD' // Required }); }, onApprove: function (data, actions) { return paypalCheckoutInstance.tokenizePayment(data, function (err, payload) { // Submit `payload.nonce` to your server }); }, }); if (!button.isEligible()) { // Skip rendering if not eligible return; } button.render('#pay-later-button'); });   Alternatively, if you're not processing the transaction server side, the sample code below adds payment buttons to your website that capture the payment immediately.   <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Ensures optimal rendering on mobile devices --> </head> <body> <!-- Include the PayPal JavaScript SDK; replace "test" with your own sandbox Business account app client ID --> <script src="https://www.paypal.com/sdk/js?client-id=test&currency=USD"></script> <!-- Set up a container element for the button --> <div id="paypal-button-container"></div> <script> paypal.Buttons({ // Sets up the transaction when a payment button is clicked createOrder: function(data, actions) { return actions.order.create({ purchase_units: [{ amount: { value: '77.44' // Can reference variables or functions. Example: `value: document.getElementById('...').value` } }] }); }, // Finalize the transaction after payer approval onApprove: function(data, actions) { return actions.order.capture().then(function(orderData) { // Successful capture! For dev/demo purposes: console.log('Capture result', orderData, JSON.stringify(orderData, null, 2)); var transaction = orderData.purchase_units[0].payments.captures[0]; alert('Transaction '+ transaction.status + ': ' + transaction.id + '\n\nSee console for all available details'); // When ready to go live, remove the alert and show a success message within this page. For example: // var element = document.getElementById('paypal-button-container'); // element.innerHTML = ''; // element.innerHTML = '<h3>Thank you for your payment!</h3>'; // Or go to another URL: actions.redirect('thank_you.html'); }); } }).render('#paypal-button-container'); </script> </body> </html>     Powered by Custom Software : NexWebSites.com PayPal Developers ... View more

Re: How to remove 'Pay Later' option?

by Nexus_Software Contributor in PayPal Payments Standard
‎Mar-03-2022 04:34 AM
‎Mar-03-2022 04:34 AM
Hello @abisti ,   One way to disable the pay later option is to append the following to the URL that references the PayPal JS SDK file: &disable-funding=credit  E.g. <script src="https://www.paypal.com/sdk/js?client-id=YOUR_ID&disable-funding=credit"></script>   Thank you.   Powered by Custom Software : NexWebSites.com PayPal Developers ... View more
  • « Previous page
    • 1
    • 2
    • 3
    • 4
  • Next page »
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!