Home › Forums › Space themes support forum › How to show “from MINIMUM PRICE” instead of price range? › Reply To: How to show “from MINIMUM PRICE” instead of price range?
February 15, 2024 at 11:33 am
#540290
Luke Nielsen
Keymaster
Hello,
Try to paste the code below into the functions.php file in your child theme, and recheck the issue.
/*
* Code Snippet to Display minimum price for WooCommerce variable products
*/
if ( ! function_exists( 'xts_woocommerce_show_only_lowest_prices_in_variable_products' ) ) {
function xts_woocommerce_show_only_lowest_prices_in_variable_products( $price, $product ) {
$price = '';
return $price .= wc_price( $product->get_price() );
}
add_filter( 'woocommerce_variable_price_html', 'xts_woocommerce_show_only_lowest_prices_in_variable_products', 10, 2 );
}
Kind Regards