Remove the currency symbol other than on cart and checkout pages in WooCommerce

Remove the currency symbol other than on cart and checkout pages in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function remove_wc_currency_symbol( $currency_symbol, $currency ) {
    {
        $currency_symbol = '';
        if ( is_cart() || is_checkout()) {
            $currency_symbol = '$';
        }
        return $currency_symbol;
    } 
}
add_filter('woocommerce_currency_symbol', 'remove_wc_currency_symbol', 10, 2);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.