gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 12:21:37 25 4
gpt4 key购买 nike

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

enter image description here

所以,基本上,按钮将显示:-20%

最佳答案

您应该能够连接到 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);

if ($percentages[0] != $percentages[1] && $percentages[0]) {
return $percentages[0].'% - '.$percentages[1].'%';
} else {
return $percentages[1].'%';
}
}

关于wordpress - 在 WooCommerce 销售按钮中显示折扣百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51065186/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com