Currency Change for my store

Topic summary

Request to update the storefront currency display for AED (United Arab Emirates Dirham) to the new UAE currency symbol, using the attached PNG as the visual reference.

  • Scope: Theme-level customization in Shopify (Store Design; customizations, shopify-themes).
  • Assets: An image attachment of the desired Dirham symbol is central to specifying the exact glyph.
  • Status: No solutions or steps provided yet; no replies.
  • Open questions: Best method to replace the AED symbol across the theme (settings vs. Liquid code), whether the theme’s fonts support the new symbol, or if an image-based/workaround approach is needed.

Outcome: Unresolved; awaiting guidance or implementation steps.

Summarized with AI on December 30. AI used: gpt-5.

I would like to change my AED currency for my store to new UAE Currency symbol as attached

Uploading: Dirham Currency Symbol - Black.png…

1 Like

Hi,

Hope this will help

  • Update currency format inside your theme
  • Search for file where prices are rendered (something like product-price.liquid, price.liquid, or inside the snippets folder)
{{ cart.currency.symbol }}
or
{{ amount | money }}

Replace symbol manually with your custom one. For example :

{{ "ⵔ" }}{{ amount | money_without_currency }}

If you’re using a custom icon then upload the PNG in Settings > Files > Copy the file URL

Replace symbol with an inline image in the price template, something like:

<img src="{{ 'your-dirham-icon.png' | file_url }}" style="height:12px;vertical-align:middle;"> {{ amount | money_without_currency }}

  • Don’t forget to test across the store

Hi @alitahlak

The AED symbol to appear as the new UAE currency format (for example: AED, د.إ, or DH):

Steps:

  1. Go to Shopify Admin → Settings → Markets

  2. Click on United Arab Emirates

  3. Open Currency and pricing

  4. Click Change formatting

  5. Update the format, for example:

Examples:

  • AED {{amount}}

  • د.إ {{amount}}

  • {{amount}} د.إ

Save the changes.