Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 102134

morgyface on "[Plugin: WooCommerce - excelling eCommerce] Changing "From Price" to maximum price."

$
0
0

So a certain wonderful person has helped me resolve this. The following code needs adding to your themes function.php file.

add_filter('woocommerce_variable_price_html', 

'custom_variation_price', 10, 2);

function custom_variation_price( $price, $product ) {

$price = '';

$price .= woocommerce_price($product->max_variation_price);

return $price;
}

How wonderful.


Viewing all articles
Browse latest Browse all 102134

Trending Articles