【发布时间】:2019-03-04 15:57:33
【问题描述】:
这适用于简单的产品,但给我两个可变产品的错误。在存档的促销闪存中,我得到 NAN% 错误“遇到的非数字值”。
我的代码:
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">SALE<br>-'.$percentage.'%</span>';
return $output;
}
关于如何解决这个问题的任何想法?
非常感谢任何帮助。
【问题讨论】:
标签: php wordpress woocommerce percentage badge