php – 在WC 3.0的单个产品页面中显示销售价格附近的折扣百分比

我在我的主题的function.PHP中有这个代码显示价格后的百分比,它在WooCommerce v2.6.14中运行良好.

但是这个片段在WooCommerce 3.0版本上不再起作用了.

我该如何解决这个问题?

这是代码

// Add save percent next to sale item prices.
add_filter( 'woocommerce_sale_price_html','woocommerce_custom_sales_price',10,2 );
function woocommerce_custom_sales_price( $price,$product ) {
    $percentage = round( ( ( $product->regular_price - $product->sale_price ) / $product->regular_price ) * 100 );
    return $price . sprintf( __(' Save %s','woocommerce' ),$percentage . '%' );
}
woocommerce_sale_price_html钩子已经被WooCommerce 3.0中的一个不同的钩子所取代,它现在有3个参数(但不再是$product参数).

这是功能相似的代码

// Only for WooCommerce version 3.0+
add_filter( 'woocommerce_format_sale_price',3 );
function woocommerce_custom_sales_price( $price,$regular_price,$sale_price ) {
    $percentage = round( ( $regular_price - $sale_price ) / $regular_price * 100 ).'%';
    $percentage_txt = __(' Save ','woocommerce' ).$percentage;
    $price = '<del>' . ( is_numeric( $regular_price ) ? wc_price( $regular_price ) : $regular_price ) . '</del> <ins>' . ( is_numeric( $sale_price ) ? wc_price( $sale_price ) . $percentage_txt : $sale_price . $percentage_txt ) . '</ins>';
    return $price;
}

代码位于活动子主题(或主题)的function.PHP文件中,或者也可以放在任何插件文件中.

代码经过测试,仅适用于WooCommerce 3.0版

Update to avoid NAN% percentage value when regular and sale prices are html pre-formatted:

add_filter( 'woocommerce_format_sale_price',$sale_price ) {
    // Getting the clean numeric prices (without html and currency)
    $regular_price = floatval( strip_tags($regular_price) );
    $sale_price = floatval( strip_tags($sale_price) );

    // Percentage calculation and text
    $percentage = round( ( $regular_price - $sale_price ) / $regular_price * 100 ).'%';
    $percentage_txt = __(' Save ','woocommerce' ).$percentage;

    return '<del>' . wc_price( $regular_price ) . '</del> <ins>' . wc_price( $sale_price ) . $percentage_txt . '</ins>';
}

代码位于活动子主题(或主题)的function.PHP文件中,仅适用于WooCommerce 3.0版(感谢@AsifRao)

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...