Skip to content

Instantly share code, notes, and snippets.

View tondemut's full-sized avatar
🎨
Finding the best dark theme for my text editor

Tee Mutanda tondemut

🎨
Finding the best dark theme for my text editor
View GitHub Profile
@ibndawood
ibndawood / functions.php
Last active April 28, 2024 19:28
WooCommerce - Changing the currency sign of UAE Dirham
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;