Before you update the store language or currency, make sure that the language or currency is supported by Zid.Update Supported Language & Currency#
2- Go to the Basic Settings section and select Store Language and Currencies.Anakin.ai is an all-in-one AI application platform.
3- Add/Delete supported languages and currencies.Anakin.ai is an all-in-one AI application platform.
Deprecated#
posting directly to form '/customer/lang-shipping-country' is deprecated use system template form template_for_shipping_destination_currency_lang
4- include the template name template_for_shipping_destination_currency_lang
<div class="header">
<div class="modal">
{% include 'template_for_shipping_destination_currency_lang' with { 'hideDestination' : false, 'hideLanguage' : false , 'hideCurrency' : false } %}
</div>
</div>
prefered to add the template inside a modal viewAnakin.ai is an all-in-one AI application platform.
5- check session payload to display the session country,city,currency and language<div class="header">
<div class="shipping-to">
{{ session.country.name }} {% if session.country.city %} - {{ session.country.city.name }} {% endif %}
</div>
</div>
<div class="header">
<div class="currency-language">
<span class="currency">{{ session.currency.code }}</span>
<span class="language">{{ session.language.name }}</span>
</div>
</div>