/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
add_filter( 'woocommerce_currency_symbol', 'wc_change_uae_currency_symbol', 10, 2 );

function wc_change_uae_currency_symbol( $currency_symbol, $currency ) {
switch ( $currency ) {
case 'AED':
$currency_symbol = 'AED';
break;
}

return $currency_symbol;
}
add_filter( 'woocommerce_currency_symbol', 'custom_aed_symbol', 10, 2 );
function custom_aed_symbol( $currency_symbol, $currency ) {
     switch( $currency ) {
          case 'AED': $currency_symbol = '<img src="https://cattlyafashion.com/wp-content/uploads/2026/01/Layer-1-5-4.png" alt="AED" style="height: 11px;vertical-align: inherit !important;margin-right: 2px;">'; break;
     }
     return $currency_symbol;
}

