Code-Snippets-Functions/Execute a function on a child site/WooCommerce/replace-the-dash-with-a-slash-on-product-prices-range.txt

5 lines
206 B
Text

add_filter( 'woocommerce_format_price_range', 'custom_format_price_range', 10, 3 );
function custom_format_price_range( $price ) {
$price = str_replace('–', '/', $price);
return $price;
}