Home / Admin / Woo – euroteken weghalen
Duplicate Snippet

Embed Snippet on Your Site

Woo – euroteken weghalen

Rene Dijk PRO
<10
Code Preview
php
<?php
function avia_remove_wc_currency_symbol( $currency_symbol, $currency ) 
    {
        $currency_symbol = '';
        if ( is_cart() || is_checkout() || is_wc_endpoint_url('order-received')) 
            $currency_symbol = '€';
        return $currency_symbol;
    } 
    add_filter('woocommerce_currency_symbol', 'avia_remove_wc_currency_symbol', 10, 2);

Comments

Add a Comment