Woocommerce - 显示常规和销售价格范围

时间:2018-05-01 12:30:12

标签: wordpress

常规和销售价格显示在简单的产品(常规价格删除) - 但在价格变化时,只有销售价格范围不是正常价格的范围(f.e.30-49欧元)。

Woocommerce版本3.09

1 个答案:

答案 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 );