按功能将折扣百分比应用于常规价格WooCommerce

时间:2017-12-19 作者:RDM

我需要显示一个折扣金额,作为WooCommerce中使用的常规价格的百分比。原价和折扣价+折扣价(10%)。例如:100

我尝试了很多插件,它们都能有效地打折,但我需要向客户(在产品和类别页面)显示原始金额(正常价格)and 折扣价格(实际价格已经由租赁插件管理)。

1 个回复
SO网友:RDM

好的,maibe我知道了:

add_filter(\'woocommerce_get_price_html\', \'custom_price\', 10, 2);
function custom_price( $price, $product ) {
  $price = \'from \';
  $price .= \'<del>\' . woocommerce_price($product->regular_price *= 1) . \'</del> \';
  $price .= woocommerce_price($product->regular_price *= 0.9);
    $price .= \' per day\';
  return $price;
}

结束

相关推荐