jaw@jawtemplates.com

How to set only minimal price for variable products

Open functions.php in your child theme and add this code there

add_filter('woocommerce_variable_price_html','jaw_woocommerce_variable_price_html',10,1);
function jaw_woocommerce_variable_price_html($price) {
$parse_price = explode('ndash;',$price);
if(isset($parse_price[0])) {
return __('Start at ','jawtemplates').substr($parse_price[0],0,-1);
} else {
return $price;
}
}

  • Was this Helpful ?
  • yes   no

Leave a Reply

You must be logged in to post a comment.