Hello lads,
How can I exclude the shipping information fields from the new Visa Checkout widget. Whether when registering or reviewing the card info for returning users, i really do not need these. We only provide service e.g TV Subscription and Other Bill Payments but do not actually sell physical products, hence won't be shipping anything anywhere. So if possible, I really wouldn't want the users so see these.
Hey @Clifford,
I'll take a look and get back to you soon!
Hey @Clifford,
If you want to exclude shipping from the VCO light box, you'll need to set the collectShipping: "false" .
Refer to the integration guide - Shipping Option Configuration Example:
Shipping Options Configuration Example
You can specify whether the consumer can set the shipping address (collectShipping) and the regions to which you ship:
V.init({
...
settings: {
...
shipping: {
acceptedRegions: ["US", "CA"],
collectShipping: "true"
},
...
);