显示Woocommerce销售徽章,保存百分比

时间:2017-12-15 06:59:09

标签: woocommerce percentage badge

我试图在Woocommerce销售徽章中显示折扣金额百分比,我找到了以下代码:

$('#slc_pc').append($("<option></option>").attr({"value": key, "abc": brand, "123": model }).text(value)); 

但是对变量产品发出警告: 警告:在/ functions.php上分为零等等......指着这一行

add_filter( 'woocommerce_sale_flash', 'wc_custom_replace_sale_text' );
function wc_custom_replace_sale_text( $html ) {
global $product;
$percentage = round( ( ( $product->get_regular_price() - $product-
>get_sale_price() ) / $product->get_regular_price() ) * 100 );
return str_replace( __( 'Sale!', 'woocommerce' ), __( '', 'woocommerce' 
).$percentage.'% OFF', $html ); }

我非常感谢任何有关如何使其发挥作用的建议!

亲切的问候, JP

0 个答案:

没有答案