import wixWindow from 'wix-window';
import wixStores from 'wix-stores';
$w.onReady(function () {
let lang = wixWindow.multilingual.currentLanguage;
if (lang === "tr") {
wixStores.currency = "TRY";
} else if (lang === "en") {
wixStores.currency = "USD";
} else if (lang === "de") {
wixStores.currency = "EUR";
}
});
top of page
bottom of page