/*
 Theme Name:   parskala Child
 Template:     parskala
 Theme URI: #
 Author: Hosein esmaliyan
 Author URI: https://masirwp.com
 Version:      1.0.0
*/



add_filter( 'woocommerce_currency_symbol', 'replace_toman_with_svg', 10, 2 );
function replace_toman_with_svg( $currency_symbol, $currency ) {

    if ( $currency === 'IRT' || $currency === 'IRR' ) {
        $currency_symbol = '<span class="toman-svg">
            <img src="https://modern-ara.com/wp-content/uploads/2025/09/toman-1.svg" alt="تومان" />
        </span>';
    }

    return $currency_symbol;
}
