Viewing 2 replies - 1 through 2 (of 2 total)
  • It may be possible to do this with some custom css:

    .price:before {visibility:visible;content:"Start at: ";}
    .price {visibility:hidden}
    .price span:first-child {visibility:visible}

    Thread Starter BvW_DE

    (@bvw_de)

    Hi, Thanks for you solution. I have found another option. This code I write in my functions.php (Childe Theme)
    ————————-
    add_filter(‘woocommerce_variable_price_html’, ‘custom_variation_price’, 10, 2);

    function custom_variation_price( $price, $product ) {

    $price = ”;

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

    return $price;
    }
    ————————-

    It works

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘show deepest price and not showing price range’ is closed to new replies.