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

  1. The country code as set in the redirect URL (see below)
  2. The country code taken from the stored cookies
  3. 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}

Load Volt Checkout with country Poland
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")

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}

Load Volt Checkout with language Polish
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")