Disable the WooCommerce Variable Product Price Range

In this post you will learn how to replace the price range on Woocommerce variable products by a “From:” text. This will be done using PHP code.

 

This is how the Product Pages look like before changing the code:

Disable the WooCommerce Variable Product Price Range

 

You can replace the price range by adding the following code to your functions.php file:

add_filter( 'woocommerce_variable_price_html', 'arrow_design_variation_price_format_min', 9999, 2 );

function arrow_design_variation_price_format_min( $price, $product ) {
$prices = $product->get_variation_prices( true );
$min_price = current( $prices['price'] );
$price = sprintf( __( 'From: %1$s', 'woocommerce' ), wc_price( $min_price ) );
return $price;
}

This is how the Product Pages look like after changing the code:

Disable the WooCommerce Variable Product Price Range

Conclusion

We hope this Disable the WooCommerce Variable Product Price Range post was helpful and you are now able to integrate this also on your website! You can find more articles here:

 

Read another Woocommerce post : ‘Add Custom Checkbox Fields above the Terms and Conditions in the Woocommerce Checkout

 

Arrow Design, based in Dublin, Ireland, provides quality website design services in Dublin and beyond at affordable prices. If you would like help with implementing the above code, or any wordpress website development project, contact us. We love website design and it shows! We provide custom wordpress plugin development, website design training and lots more.

We do it all, so you don’t have to!

Related Posts

Woocommerce Account Page Hook Guide

In this article you will find a visual hook guide for the Woocommerce Account Pages, like the Login/Register page, the Downloads page or the Orders page.

Woocommerce PHP – Product Categories by Product ID

Woocommerce Single Product Page Hook Guide

In this article you will find a visual hook guide for the Woocommerce Single Product Page. This should help you to quickly and easily find the hook positions on the page.

Woocommerce PHP – Product Categories by Product ID

Woocommerce PHP – Product Categories by Product ID

In this tutorial you will learn how to check if a product is assigned to a tag, a category or a custom taxonomy. You can check if a product is is on the shop page, in the cart, in an order & more.

…We do more, so you can do less 🙂

 

Leave a message and we will be straight back to you!

Pin It on Pinterest

Share This