php - 将折扣百分比添加到正在销售的可变产品

标签 php wordpress woocommerce product-variations

我正在尝试在使用 WooCommerce 的网站中添加折扣百分比。

我已将此脚本应用于标准价格和销售价格:

// Add save percentage next to sale item prices.
add_filter( 'woocommerce_get_price_html', 'adventure_tours_sales_price', 10, 2 );
function adventure_tours_sales_price( $price, $product ){
  $percentage = round( ( ( $product->regular_price - $product->sale_price ) / $product->regular_price ) * 100 );
  return $price . sprintf( __(' Save %s', 'woocommerce' ), $percentage . '%' );
}

上面的脚本有效。

在前端,我有价格百分比。

现在我想将相同的脚本应用于产品变体价格。

我已经检查了产品变体选项并尝试了如下操作:

// Add save percentage next to sale item prices.
add_filter( 'woocommerce_get_price_html', 'adventure_tours_sales_price', 10, 2 );
function adventure_tours_sales_price( $price, $product ){
  if( $product->is_type( 'variable' ) ) {
    $percentage = round( ( ( $product->regular_price - $product->sale_price ) / $product->regular_price ) * 100 );
    return $price . sprintf( __(' Save %s', 'woocommerce' ), $percentage . '%' );
  }else{
    $percentage = round( ( ( $product->regular_price - $product->sale_price ) / $product->regular_price ) * 100 );
    return $price . sprintf( __(' Save %s', 'woocommerce' ), $percentage . '%' );
  }
}

但它不起作用,百分比不应用于价格。

也不在前端。

最佳答案

Updated for WooCommerce version 3+ | Deprecated replacements

  • Replaced 'woocommerce_variable_sale_price_html' by 'woocommerce_variable_get_price_html'
  • Replaced 'woocommerce_sale_price_html' by 'woocommerce_get_price_html'
  • Replaced 'woocommerce_price()' by 'wc_price()'
  • Replaced WC_Product price properties by WC_Product price methods

对于可变产品,情况会更加复杂,因为您有 2 个不同的价格地点,第一个显示最低和最高价格(当您有多个变体时),第二个显示所选变体的价格。我对你原来的代码做了很多修改。

这里是显示自定义动态标签围绕折扣百分比的正确代码:

add_filter('woocommerce_variable_get_price_html','adventure_tours_sales_price', 10, 2 );
add_filter('woocommerce_get_price_html','adventure_tours_sales_price', 10, 2 );
function adventure_tours_sales_price( $price, $product ){

    // Variables initialisation
    $regular_price = $product->get_regular_price();
    $sale_price    = $product->get_sale_price();
    $save_text     = __('Save', 'woocommerce') . ' ';

    if(!empty($sale_price)) {
        // Percentage calculation
        $percentage = '<span class="save-percent"> ' .$save_text . round( ( ( $regular_price -  $sale_price ) / $regular_price ) * 100 ) . '%</span>';

        $price = '<del class="strike">' . wc_price( $regular_price ) . '</del>
        <ins class="highlight">' . wc_price( $sale_price )  . $percentage . '</ins>';
    } else {
        $price = '<ins class="highlight">'.wc_price( $regular_price ).'</ins>';
    }
    return $price;
}

add_filter('woocommerce_variable_get_price_html', 'adventure_tours_sales_min_max_prices', 20, 2);
function adventure_tours_sales_min_max_prices( $price, $product) {

    // Variables initialisation
    $variation_min_reg_price = $product->get_variation_regular_price('min', true);
    $variation_max_reg_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);
    $percentage_min = '';
    $percentage_max = '';
    $save_text     = __('Save', 'woocommerce') . ' ';

    // Percentage calculations
    if($variation_min_reg_price != $variation_min_sale_price)
        $percentage_min = '<span class="save-percent-min"> (' .$save_text . round( ( ( $variation_min_reg_price -  $variation_min_sale_price ) / $variation_min_reg_price ) * 100 ) . '%)</span>';
    if($variation_max_reg_price != $variation_max_sale_price)
        $percentage_max = '<span class="save-percent-max"> (' .$save_text . round( ( ( $variation_max_reg_price -  $variation_max_sale_price ) / $variation_max_reg_price ) * 100 ) . '%)</span>';

    if (($variation_min_reg_price != $variation_min_sale_price) || ($variation_max_reg_price != $variation_max_sale_price)) {
        $price = '<del class="strike">' . wc_price($variation_min_reg_price) . '-' . wc_price($variation_max_reg_price) .  '</del>
        <ins class="highlight">' . wc_price($variation_min_sale_price) . $percentage_min . ' - ' . wc_price($variation_max_sale_price) . $percentage_max . '</ins>';
    }
    return $price;
}

代码位于事件子主题(或主题)的functions.php 文件中或任何插件文件中。

经过测试并适用于 Woocommerce 版本 3+

enter image description here


相关答案:

关于php - 将折扣百分比添加到正在销售的可变产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42230027/

相关文章:

php - 更改服务器中正在使用的电子邮件地址

html - style.css 在 wordpress 中的位置

php - 以编程方式将子帖子插入 Wordpress

php - 当注册客户尚未在 WooCommerce 中购买时显示自定义文本

php - mysqli_real_escape_string() 无法正常运行

php - 使用 implode 和 stropos 将日期转换为数组

javascript - 当我格式化到 mysql 中时,Ckeditor 不存储

css - 如何从页面模板更改相同的页面/帖子 css 样式

php - 以编程方式有条件地向 Woocommerce 3 添加折扣

php - 如果 Woocommerce 订单项具有特定的自定义元数据,则向电子邮件添加文本