Default country
The list of available countries is configured by Volt. In case you like to change the available countries contact support@volt.io.
The default (initial) country is determined in the following order
- The country code as set in the redirect URL (see below)
- The country code taken from the stored cookies
- The country code derived from the client IP address
If a country can still not be determined, the shopper will be asked to select a one the first time they use the checkout. The country can be changed by the shopper during checkout.
Confirmation page
If you’re using the confirmation page, you’ll have already pre-selected a bank, so that bank’s country will be used.
Set the initial country
Add the country as code to the checkoutUrl
before you redirect the shopper to the URL.
The format for the parameter is country={country code in upper case}
response.checkoutUrl + "&country=" + countryCode // Setting the country to PL
// For example
"https://checkout.volt.io/2c1...G4s" + "&country=PL"
// Then redirect the shopper to the adjusted URL
RedirectShopper("https://checkout.volt.io/2c1...G4s&country=PL")
See the list of supported countries.
Default language
English is the default language on our checkout and confirmation pages. You can set the language by setting the language
parameter in the checkout URL to the language code.
Set the language in the checkout URL
The format for the parameter is language={language code in lower case}
response.checkoutUrl + "&language=" + languageCode // Setting the language to PL
// For example
"https://checkout.volt.io/2c1...G4s" + "&language=pl"
// Then redirect the shopper to the adjusted URL
RedirectShopper("https://checkout.volt.io/2c1...G4s&language=pl")
See the list of supported languages.
- On this page
- Default country
- Default language