我有一个woocommerce订阅产品,在我的商店/产品页面中有两种变体(一次性付款,并在12个月内付款),显示的价格是其中一种变体(12个月内支付,例如。“从$ 19.9 /月”)。我想显示其他变体的价格(一次性付款),即产品的全价。我该怎么办?
我已经尝试过了,但是没有用
add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2);
function custom_variation_price( $price, $product ) {
$price = '';
$price .= woocommerce_price($product->max_variation_price);
return $price;
}
仅供参考:我还有其他未订购的可变产品,我只想只对订购产品这样做。