Show Only the Lowest Price for Variable Products

  • Home
  • Show Only the Lowest Price for Variable Products
Show Only the Lowest Price for Variable Products
// Show only the lowest price (hide the second/highest price) for variable products add_filter( ‘woocommerce_variable_price_html’, ‘hide_variable_product_price_range’, 10, 2 ); function hide_variable_product_price_range( $price, $product ) { // Get all variation prices $prices = $product->get_variation_prices( true ); // Find the minimum price $min_price = current( $prices[‘price’] ); // Return only the minimum price, formatted correctly return wc_price( $min_price ); }

Leave a comment