Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter dpatisserie

    (@dpatisserie)

    Hi,

    This one isn’t working also: https://gist.github.com/kloon/8981075

    When I put the code in my child theme, all my site is out. Only blank pages.

    Any idea ? :/

    Thread Starter dpatisserie

    (@dpatisserie)

    Hello,

    I found how to solve my problem !

    For those who have the same issue:

    /**
    * This code should be added to functions.php of your theme
    **/
    add_filter(‘woocommerce_variable_price_html’, ‘custom_variation_price’, 10, 2);

    function custom_variation_price( $price, $product ) {

    $price = ”;

    if ( !$product->min_variation_price || $product->min_variation_price !== $product->max_variation_price ) $price .= ‘<span class=”from”>’ . _x(‘From’, ‘min_price’, ‘woocommerce’) . ‘ </span>’;

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

    if ( $product->max_variation_price && $product->max_variation_price !== $product->min_variation_price ) {
    //$price .= ‘<span class=”to”> ‘ . _x(‘to’, ‘max_price’, ‘woocommerce’) . ‘ </span>’;

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

    return $price;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing the 2 prices on variable products’ is closed to new replies.