常规和销售价格显示在简单的产品(常规价格删除) - 但在价格变化时,只有销售价格范围不是正常价格的范围(f.e.30-49欧元)。
Woocommerce版本3.09
答案 0 :(得分:0)
请执行以下步骤:
如果你想禁用促销价
function custom_wc_get_sale_price( $sale_price, $product ) {
return $product->get_regular_price();
return $sale_price;
}
add_filter( 'woocommerce_get_sale_price', 'custom_wc_get_sale_price', 50, 2 );
add_filter( 'woocommerce_get_price', 'custom_wc_get_sale_price', 50, 2 );