Woocommerce Değişkenli Ürün
Woocommerce Değişkenli Ürün fiyat ara değerlerini göstermemek için aşağıdaki kodu functions.php’ye yerleştirin.
[code]
add_filter(‘woocommerce_variable_price_html’,’custom_from’,10);
add_filter(‘woocommerce_grouped_price_html’,’custom_from’,10);
add_filter(‘woocommerce_variable_sale_price_html’,’custom_from’,10);
function custom_from($price){
return false;
}
[/code]

