我需要显示一个折扣金额,作为WooCommerce中使用的常规价格的百分比。原价和折扣价+折扣价(10%)。例如:100
我尝试了很多插件,它们都能有效地打折,但我需要向客户(在产品和类别页面)显示原始金额(正常价格)and 折扣价格(实际价格已经由租赁插件管理)。
我需要显示一个折扣金额,作为WooCommerce中使用的常规价格的百分比。原价和折扣价+折扣价(10%)。例如:100
我尝试了很多插件,它们都能有效地打折,但我需要向客户(在产品和类别页面)显示原始金额(正常价格)and 折扣价格(实际价格已经由租赁插件管理)。
好的,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;
}