Hi,
I am trying to show currency symbols only in the cart but not in the shop pages. Works fine with this code:
// Remove all currency symbols
function sww_remove_wc_currency_symbols( $currency_symbol, $currency ) {
if ( is_shop() || is_product() || is_product_category() || is_product_tag() )
$currency_symbol = ”;
return $currency_symbol;
}
add_filter(‘woocommerce_currency_symbol’, ‘sww_remove_wc_currency_symbols’, 10, 2);
However, the homepage is using the Woodmart widgets and I am wondering how to ‘call’ those with an ‘is_’ hook (if even possible). Do you know by any chance if I can do this?
Thanks,
Ruben