{"id":2521,"date":"2025-07-29T11:52:49","date_gmt":"2025-07-29T11:52:49","guid":{"rendered":"https:\/\/rajeshgoutam.com\/blog\/?p=2521"},"modified":"2025-07-29T12:07:01","modified_gmt":"2025-07-29T12:07:01","slug":"how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce","status":"publish","type":"post","link":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/","title":{"rendered":"How to Use the UAE New Currency Symbol (AED) in WooCommerce?"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"2521\" class=\"elementor elementor-2521\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-a28096a elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a28096a\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9b0b311\" data-id=\"9b0b311\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2a2ab87 elementor-widget elementor-widget-text-editor\" data-id=\"2a2ab87\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Using the official UAE Dirham (AED) currency symbol in your WooCommerce store not only enhances the professionalism of your website but also aligns with local standards and improves user trust.<\/p><p>In this blog post, we\u2019ll guide you step-by-step on how to replace the default \u201cAED\u201d text symbol with the new UAE Dirham currency icon using a live image in WooCommerce.<\/p><p><strong>Why Use the UAE Dirham Symbol?<\/strong><br \/>The UAE introduced a new currency symbol to represent the Dirham (AED) to standardize its identity similar to other global currencies like $, \u20ac, and \u20b9. Using this symbol provides:<br \/>&#8211; A more visual representation of the currency.<br \/>&#8211; Brand localization for UAE-based or targeting customers.<br \/>&#8211; Better UX on multilingual or multi-currency websites.<\/p><p><strong>Steps to Use the UAE Dirham Symbol in WooCommerce<\/strong><\/p><p><strong>Step 1: Use a Public Image of the Dirham Symbol<br \/><\/strong><br \/>We&#8217;ll use the official symbol image hosted on Wikimedia:<\/p><p>\u00a0<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9d3742b elementor-widget elementor-widget-code-highlight\" data-id=\"9d3742b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-html line-numbers\">\n\t\t\t\t<code readonly=\"true\" class=\"language-html\">\n\t\t\t\t\t<xmp>https:\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/ee\/UAE_Dirham_Symbol.svg\/960px-UAE_Dirham_Symbol.svg.png\r\n<\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5a4496e elementor-widget elementor-widget-text-editor\" data-id=\"5a4496e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>Step 2: Add Custom Code to functions.php<br \/><\/strong><br \/>Go to your theme&#8217;s `functions.php` file and add the following code:<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7705719 elementor-widget elementor-widget-code-highlight\" data-id=\"7705719\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-html line-numbers\">\n\t\t\t\t<code readonly=\"true\" class=\"language-html\">\n\t\t\t\t\t<xmp>add_filter( 'woocommerce_currency_symbol', function( $currency_symbol, $currency ) {\r\n    if ( $currency === 'AED' ) {\r\n        $image_url = 'https:\/\/upload.wikimedia.org\/wikipedia\/commons\/thumb\/e\/ee\/UAE_Dirham_Symbol.svg\/960px-UAE_Dirham_Symbol.svg.png';\r\n        $currency_symbol = '<img decoding=\"async\" src=\"' . esc_url($image_url) . '\" alt=\"AED\" style=\"display:inline-block;width:0.8em;height:1em;vertical-align:middle;margin-right:4px;\">';\r\n    }\r\n    return $currency_symbol;\r\n}, 10, 2 );\r\n\r\nadd_filter( 'woocommerce_price_format', function( $format ) {\r\n    return '%1$s%2$s'; \/\/ Symbol before the price\r\n});\r\n<\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-56a21e5 elementor-widget elementor-widget-text-editor\" data-id=\"56a21e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>This filter replaces the AED currency symbol with an inline image of the Dirham symbol.<\/p><p><strong>Step 3: Make It Responsive<\/strong><\/p><p>The inline `style` ensures the icon scales nicely with text. You can further enhance responsiveness by tweaking the width\/height based on your theme design.<\/p><p><strong>Final Output<\/strong><\/p><p><strong>Instead of displaying: AED 150.00<\/strong><br \/><strong>It will now show: <\/strong><strong>[Icon] 150.00<\/strong><\/p><p><strong>SEO Tip:<\/strong><br \/>If your store targets UAE customers, using local currency formats and symbols can help with better local search visibility and user trust.<br \/><br \/><strong>Need Help?<br \/><\/strong>If you&#8217;re not comfortable editing theme files, consider using a child theme or reaching out to <a href=\"https:\/\/www.dreamssofttechnology.com\/\">a developer.<\/a><br \/><br \/>Enhance your WooCommerce store for the UAE market with the official Dirham symbol today!<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Using the official UAE Dirham (AED) currency symbol in your WooCommerce store not only enhances the professionalism of your website but also aligns with local standards and improves user trust. In this blog post, we\u2019ll guide you step-by-step on how to replace the default \u201cAED\u201d text symbol with the new UAE Dirham currency icon using [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2522,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[22],"tags":[1291,1286,1293,1290,1288,1294,1285,1289,1287,1292],"class_list":["post-2521","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology","tag-add-aed-symbol-woocommerce","tag-aed-currency-woocommerce","tag-change-aed-text-symbol","tag-dirham-icon-in-woocommerce","tag-uae-aed-symbol","tag-uae-currency-symbol-woocommerce","tag-uae-dirham-symbol","tag-woocommerce-aed-customization","tag-woocommerce-currency-icon","tag-woocommerce-uae-store"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Use UAE Dirham (AED) Symbol in WooCommerce Easily<\/title>\n<meta name=\"description\" content=\"Learn how to replace the AED text with the official UAE Dirham symbol in WooCommerce using custom code for better UX and localization.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Use UAE Dirham (AED) Symbol in WooCommerce Easily\" \/>\n<meta property=\"og:description\" content=\"Learn how to replace the AED text with the official UAE Dirham symbol in WooCommerce using custom code for better UX and localization.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/\" \/>\n<meta property=\"og:site_name\" content=\"Rajesh Goutam Web Expert Jaipur India - Tech Tips\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-29T11:52:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-29T12:07:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Rajesh Goutam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rajesh Goutam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/\"},\"author\":{\"name\":\"Rajesh Goutam\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#\/schema\/person\/604608a7782f206a0eb1420b48e4ef5d\"},\"headline\":\"How to Use the UAE New Currency Symbol (AED) in WooCommerce?\",\"datePublished\":\"2025-07-29T11:52:49+00:00\",\"dateModified\":\"2025-07-29T12:07:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/\"},\"wordCount\":291,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg\",\"keywords\":[\"add AED symbol WooCommerce\",\"AED currency WooCommerce\",\"change AED text symbol\",\"Dirham icon in WooCommerce\",\"UAE AED symbol\",\"UAE currency symbol WooCommerce\",\"UAE Dirham symbol\",\"WooCommerce AED customization\",\"WooCommerce currency icon\",\"WooCommerce UAE store\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/\",\"url\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/\",\"name\":\"Use UAE Dirham (AED) Symbol in WooCommerce Easily\",\"isPartOf\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg\",\"datePublished\":\"2025-07-29T11:52:49+00:00\",\"dateModified\":\"2025-07-29T12:07:01+00:00\",\"description\":\"Learn how to replace the AED text with the official UAE Dirham symbol in WooCommerce using custom code for better UX and localization.\",\"breadcrumb\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#primaryimage\",\"url\":\"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg\",\"contentUrl\":\"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg\",\"width\":1200,\"height\":630,\"caption\":\"How to Use the UAE New Currency Symbol (AED) in WooCommerce\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rajeshgoutam.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use the UAE New Currency Symbol (AED) in WooCommerce?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#website\",\"url\":\"https:\/\/rajeshgoutam.com\/blog\/\",\"name\":\"Rajesh Goutam Web Expert Jaipur India - Tech Tips\",\"description\":\"Rajesh Goutam Web Expert Jaipur India - Tech Tips\",\"publisher\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/rajeshgoutam.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#organization\",\"name\":\"Dreams Infosoft Technology Pvt. Ltd.\",\"url\":\"https:\/\/rajeshgoutam.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2022\/07\/Rajesh-Goutam-Web-Expert-India-logo.png\",\"contentUrl\":\"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2022\/07\/Rajesh-Goutam-Web-Expert-India-logo.png\",\"width\":1000,\"height\":240,\"caption\":\"Dreams Infosoft Technology Pvt. Ltd.\"},\"image\":{\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/rajeshgoutam.com\/blog\/#\/schema\/person\/604608a7782f206a0eb1420b48e4ef5d\",\"name\":\"Rajesh Goutam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1e5a87c744b9ec1763d0ff2ddad8a08e2411dbc725ce6aaf0d38a432dff778fe?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1e5a87c744b9ec1763d0ff2ddad8a08e2411dbc725ce6aaf0d38a432dff778fe?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1e5a87c744b9ec1763d0ff2ddad8a08e2411dbc725ce6aaf0d38a432dff778fe?s=96&d=mm&r=g\",\"caption\":\"Rajesh Goutam\"},\"sameAs\":[\"http:\/\/rajeshgoutam.com\/blog\"],\"url\":\"https:\/\/rajeshgoutam.com\/blog\/author\/goutam\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Use UAE Dirham (AED) Symbol in WooCommerce Easily","description":"Learn how to replace the AED text with the official UAE Dirham symbol in WooCommerce using custom code for better UX and localization.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/","og_locale":"en_US","og_type":"article","og_title":"Use UAE Dirham (AED) Symbol in WooCommerce Easily","og_description":"Learn how to replace the AED text with the official UAE Dirham symbol in WooCommerce using custom code for better UX and localization.","og_url":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/","og_site_name":"Rajesh Goutam Web Expert Jaipur India - Tech Tips","article_published_time":"2025-07-29T11:52:49+00:00","article_modified_time":"2025-07-29T12:07:01+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg","type":"image\/jpeg"}],"author":"Rajesh Goutam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rajesh Goutam","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#article","isPartOf":{"@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/"},"author":{"name":"Rajesh Goutam","@id":"https:\/\/rajeshgoutam.com\/blog\/#\/schema\/person\/604608a7782f206a0eb1420b48e4ef5d"},"headline":"How to Use the UAE New Currency Symbol (AED) in WooCommerce?","datePublished":"2025-07-29T11:52:49+00:00","dateModified":"2025-07-29T12:07:01+00:00","mainEntityOfPage":{"@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/"},"wordCount":291,"commentCount":0,"publisher":{"@id":"https:\/\/rajeshgoutam.com\/blog\/#organization"},"image":{"@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg","keywords":["add AED symbol WooCommerce","AED currency WooCommerce","change AED text symbol","Dirham icon in WooCommerce","UAE AED symbol","UAE currency symbol WooCommerce","UAE Dirham symbol","WooCommerce AED customization","WooCommerce currency icon","WooCommerce UAE store"],"articleSection":["Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/","url":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/","name":"Use UAE Dirham (AED) Symbol in WooCommerce Easily","isPartOf":{"@id":"https:\/\/rajeshgoutam.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#primaryimage"},"image":{"@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#primaryimage"},"thumbnailUrl":"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg","datePublished":"2025-07-29T11:52:49+00:00","dateModified":"2025-07-29T12:07:01+00:00","description":"Learn how to replace the AED text with the official UAE Dirham symbol in WooCommerce using custom code for better UX and localization.","breadcrumb":{"@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#primaryimage","url":"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg","contentUrl":"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2025\/07\/How-to-Use-the-UAE-New-Currency-Symbol-AED-in-WooCommerce.jpg","width":1200,"height":630,"caption":"How to Use the UAE New Currency Symbol (AED) in WooCommerce"},{"@type":"BreadcrumbList","@id":"https:\/\/rajeshgoutam.com\/blog\/how-to-use-the-uae-new-currency-symbol-aed-in-woocommerce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rajeshgoutam.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Use the UAE New Currency Symbol (AED) in WooCommerce?"}]},{"@type":"WebSite","@id":"https:\/\/rajeshgoutam.com\/blog\/#website","url":"https:\/\/rajeshgoutam.com\/blog\/","name":"Rajesh Goutam Web Expert Jaipur India - Tech Tips","description":"Rajesh Goutam Web Expert Jaipur India - Tech Tips","publisher":{"@id":"https:\/\/rajeshgoutam.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rajeshgoutam.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/rajeshgoutam.com\/blog\/#organization","name":"Dreams Infosoft Technology Pvt. Ltd.","url":"https:\/\/rajeshgoutam.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rajeshgoutam.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2022\/07\/Rajesh-Goutam-Web-Expert-India-logo.png","contentUrl":"https:\/\/rajeshgoutam.com\/blog\/wp-content\/uploads\/2022\/07\/Rajesh-Goutam-Web-Expert-India-logo.png","width":1000,"height":240,"caption":"Dreams Infosoft Technology Pvt. Ltd."},"image":{"@id":"https:\/\/rajeshgoutam.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/rajeshgoutam.com\/blog\/#\/schema\/person\/604608a7782f206a0eb1420b48e4ef5d","name":"Rajesh Goutam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1e5a87c744b9ec1763d0ff2ddad8a08e2411dbc725ce6aaf0d38a432dff778fe?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1e5a87c744b9ec1763d0ff2ddad8a08e2411dbc725ce6aaf0d38a432dff778fe?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1e5a87c744b9ec1763d0ff2ddad8a08e2411dbc725ce6aaf0d38a432dff778fe?s=96&d=mm&r=g","caption":"Rajesh Goutam"},"sameAs":["http:\/\/rajeshgoutam.com\/blog"],"url":"https:\/\/rajeshgoutam.com\/blog\/author\/goutam\/"}]}},"_links":{"self":[{"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/posts\/2521","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/comments?post=2521"}],"version-history":[{"count":7,"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/posts\/2521\/revisions"}],"predecessor-version":[{"id":2531,"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/posts\/2521\/revisions\/2531"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/media\/2522"}],"wp:attachment":[{"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/media?parent=2521"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/categories?post=2521"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rajeshgoutam.com\/blog\/wp-json\/wp\/v2\/tags?post=2521"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}