Zid Docs
Merchant APIApp APIThemes
Merchant APIApp APIThemes
Help Center
Slack
  1. Templates
  • 🚨 Important Update: Zid Themes
  • Landing Page Development
  • Getting Started with Zid Themes
    • Introduction to Theme Development
    • Manage your Themes
    • Building Themes in Zid
    • Theme File Structure
    • Twig Syntax and Features
    • Zid Theme Packager
  • Templates
    • Layout
    • Home Page
    • Products
    • Cart
    • Store Language and Currency
  • Settings Schema
    • Text
    • Number
    • Text-Area
    • Select
    • Radio Buttons
    • Checkbox
    • Range
    • Color
    • Image
    • Product
    • Category
    • List
    • Fieldset
  • Code Snippets
    • Apple Pay Quick Checkout
    • Custom CSS Injection
    • Displaying the Store's Business Center Logo
    • Customizing Copyright Text
    • Store's Main Navigation Menu
    • Customer Wishlist
    • Products
      • Products Badges
      • Product Ratings
      • Remaining Product Stock
      • Sold Items Count
      • Product Filtration by Attributes
      • Grouped Products
      • Product Questions & Answers
      • Product Restock Notfication
    • SEO
      • Images alt text
      • Themes SEO Marketing Tags
    • Marketing
      • Metafields
      • Gift Feature
      • Loyalty Program
  • Zid Themes Library: API Integration
    • Products
    • Product Categories
    • Cart
    • Blog
    • Customer
    • Store Settings
  • Data Reference
    • Locals
    • Store
    • Cart
    • Product
    • Products List
    • Category
    • Categories List
    • Session
    • FAQs
    • Customer
    • Blogs
    • Page
    • Main Menu
    • Main Navigation Menu
    • Request
    • Orders
    • Addresses
    • Store Payment Methods
    • Store Shipping Methods
    • Store Banks
    • Asset URL
    • Header Meta Tags
    • Loyalty pogram Wallet
  • Themes CLI
    • CLI Authentication
    • Theme Create
    • Theme Package
    • Theme Update
    • Themes List
    • Theme Preview
  1. Templates

Store Language and Currency

Before you update the store language or currency, make sure that the language or currency is supported by Zid.

Update Supported Language & Currency#

Follow these steps:
1- Log in to your account to check Store settings.
2- Go to the Basic Settings section and select Store Language and Currencies.
CleanShot 2024-12-05 at 13.08.54@2x.png
Anakin.ai is an all-in-one AI application platform.
3- Add/Delete supported languages and currencies.
CleanShot 2024-12-05 at 13.10.20@2x.png
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
example:
<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 view
image.png
Anakin.ai is an all-in-one AI application platform.
5- check session payload to display the session country,city,currency and language
example
<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>
Modified at 2024-12-05 10:10:57
Previous
Cart
Next
Settings Schema
Built with