Wondering why the Shopify Buy button is displayed in English on your German multilingual website?
Shopify Buy Button detected your language automatically, if you need to override it to match your selected language, simply add the "language" parameter to ShopifyBuy.buildClient({}):
var client = ShopifyBuy.buildClient({
domain: 'yourshop.myshopify.com',
storefrontAccessToken: 'Your Token',
language: 'en-EN',
});
as documented here: https://shopify.github.io/js-buy-sdk/?shpxid=4abb7650-8F81-41E9-6FFD-5C…
If the parameter is not set, the language will be auto-detected (default).
To set language to German for example, use "de-DE" as language value.