Third party payment gateway cartridges not working in SFRA architecture #423
Replies: 6 comments
-
|
Hi @rajanbhuyan , Usually from the information in the marketplace, e.g. https://www.salesforce.com/products/commerce-cloud/partner-marketplace/partners/adyen/ From there in the "Download Information" section you have two very important elements: "Integration & Documentation" which gives you information about the version number (e.g. Release 18.3.0) and allows you to download the actual LINK cartridge. |
Beta Was this translation helpful? Give feedback.
-
|
Hi, Thanks |
Beta Was this translation helpful? Give feedback.
-
|
Hi @Rajan Issue might be also that these cartridges are not compatible with the latest SFRA version 4.2.1. All Payment LINK Cartridges had to be updated after SFRA v4.0.0 since it came with a payment hook changes. Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
|
Thanks @rpitla ! |
Beta Was this translation helpful? Give feedback.
-
I tried this as well but no luck! |
Beta Was this translation helpful? Give feedback.
-
|
Hi , I had the same problem and I had to make a small code change in paypalMFRA.js where the buttons are getting initialized. Root cause seems to be , JS is getting executed before the DOM is built because the main function is an self-executing function where the buttons are getting initialized. Below line of code is what you will see in this JS file. (function () { I just enforced this piece of code to get executed after the document ready by changing as below: (function () { |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I was trying to set up third-party payment gateways like PayPal, Adyen, etc. in SFRA architecture. For that, I followed all the steps provided in the installation documents of PayPal and Adyen and the gateways are also enabled in the Business Manager. Unfortunately, PayPal and Adyen are not showing up in the front end - the "RefArch" site. I have cross-checked many times the documents provided by the vendor to make sure I am doing the right thing. So, I am bit concerned if I am missing anything or there is something different way to set it up in SFRA. Just a note that these gateways worked perfectly in the SGJC implementation.
Any help will be highly appreciated!!
Thanks
Beta Was this translation helpful? Give feedback.
All reactions