Solved!
Go to solution
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
July 2017
July 2017
Hi Team,
I have integrated below JS in our site.
https://sandbox-assets.secure.checkout.visa.com/checkout-widget/resources/js/integration/v1/sdk.js
Able to view the checkout popup and view saved card and address details associted with the login. But the total amount (SGD 11.30) is not getting displayed below Card/Address details. Also instead of "Pay" button, I am seeing "Continue" button.
Below is the sample code used
var myapikey = "xxxxxxxxxxx"; V.init({ apikey : myapikey, settings: { displayName: "My Site", dataLevel: "FULL" }, paymentRequest: { currencyCode: "SGD", subtotal: "11.30" } });
Could you please guide, if we miss something?
Thanks,
SK
Solved! Go to Solution
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
July 2017
July 2017
This worked!!!
var myapikey = "xxxxxxxxxxx"; V.init({ apikey : myapikey, settings: { displayName: "My Site", review: { buttonAction: "Pay" }, dataLevel: "FULL" }, paymentRequest: { currencyCode: "SGD", total: "11.30", } });
Thanks Myself
SK
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
September 2017
September 2017
Re: Amount Not Displayed in Visa Checkout Payment popup - SDK.js
Glad to hear that !