在WooCommerce销售按钮中显示折扣百分比

时间:2018-06-27 14:18:50

标签: wordpress woocommerce

我正在寻找一种在WooCommerce中显示销售气泡中折扣百分比的方法。这是按钮现在的外观图片:

enter image description here

因此,基本上,按钮将显示:-20%

1 个答案:

答案 0 :(得分:3)

您应该能够加入woocommerce_sale_flash过滤器,获取产品对象,计算出百分比并将其添加到HTML。

类似这样的东西:

add_filter( 'woocommerce_sale_flash', 'add_percentage_to_sale_bubble' );
function add_percentage_to_sale_bubble( $html ) {
    global $product;
    $percentage = round( ( ( $product->regular_price - $product->sale_price ) / $product->regular_price ) * 100 );
    $output =' <span class="onsale">VERKOOP -'.$percentage.'%</span>';
    return $output;
}

编辑-可变产品:

随着可变产品的加入,您将需要使用is_type('simple|variable')进行检查,并从那里调整计算,如下所示:

add_filter( 'woocommerce_sale_flash', 'add_percentage_to_sale_bubble', 20 );
function add_percentage_to_sale_bubble( $html ) {
    global $product;

    if ($product->is_type('simple')) { //if simple product
        $percentage = round( ( ( $product->regular_price - $product->sale_price ) / $product->regular_price ) * 100 ).'%';
    } else { //if variable product
        $percentage = get_variable_sale_percentage( $product );
    }

    $output =' <span class="onsale">-'.$percentage.'</span>';
    return $output;
}

function get_variable_sale_percentage( $product ) {
    //get variables
    $variation_min_regular_price    = $product->get_variation_regular_price('min', true);
    $variation_max_regular_price    = $product->get_variation_regular_price('max', true);
    $variation_min_sale_price       = $product->get_variation_sale_price('min', true);
    $variation_max_sale_price       = $product->get_variation_sale_price('max', true);

    //get highest and lowest percentages
    $lower_percentage   = round( ( ( $variation_min_regular_price - $variation_min_sale_price ) / $variation_min_regular_price ) * 100 );
    $higher_percentage  = round( ( ( $variation_max_regular_price - $variation_max_sale_price ) / $variation_max_regular_price ) * 100 );

    //sort array
    $percentages = array($lower_percentage, $higher_percentage);
    sort($percentages);

    return $percentages[1].'%';
}