How to Remove variation price in Woocommerce?
Answered
How to remove Woocommerce “from” variation price?
Best answer
Adding the following code to your functions.php file should be able to remove the Woocommerce variation price:
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;
}