/*
Theme Name: Elessi Theme Child
Theme URI: https://elessi.nasatheme.com
Description: This is a child theme for Elessi Theme
Author: NasaTheme team
Author URI: https://nasatheme.com
Template: elessi-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/


/* for change saudi currence text arabic to english */
add_filter( 'woocommerce_currency_symbol', function( $symbol, $currency ) {
    if ( $currency === 'SAR' ) {
        return 'SAR';
    }
    return $symbol;
}, 999, 2 );