在下图中,它显示了折扣价格和百分比
我发现没有具有此功能的自定义代码搜索.
我使用下面的代码显示折扣价,但价格没有格式化(货币符号和小数缺失):
add_filter( 'woocommerce_get_price_html', 'modify_woocommerce_get_price_html', 10, 2 );
function modify_woocommerce_get_price_html( $price, $product ) {
if( $product->is_on_sale() && ! is_admin() )
return $price . sprintf( __('<p class="saved-sale">Save: %s</p>', 'woocommerce' ), $product->regular_price - $product->sale_price );
else
return $price;
}
Run Code Online (Sandbox Code Playgroud)
如何显示正确的格式折扣价?如何显示折扣百分比?
任何帮助都是适用的.