在WooCommerce中不包括订阅产品的价格之前和之后添加文本
在WooCommerce中,我使用以下代码在显示的产品价格周围添加一些文本("Rent:"和"/day"),如:
function cp_change_product_price_display( $price ) {
echo 'Rent: ' . $price . '/day';
}
add_filter( 'woocommerce_get_price_html', 'cp_change_product_price_display' );
add_filter( 'woocommerce_cart_item_price', 'cp_change_product_price_display' );
我也使用插件"YITH WooCommerce Subscription",但我的代码有问题。现在,在订阅包中,我有一个价格显示:
- 租金:20美元/7天/天
- 租金:80美元/月/天
如何从我的代码中排除订阅产品或订阅类别以避免此问题?
解决方案
您可以添加条件,查看当前产品是否为订阅。示例。
function cp_change_product_price_display( $price, $instance ) {
if ( 'yes' === $instance->get_meta( '_ywsbs_subscription' ) ) {
return $price;
}
return 'Rent: ' . $price . '/day';
}
add_filter( 'woocommerce_get_price_html', 'cp_change_product_price_display', 10, 2 );
购物车价格:
function cp_change_product_price_display_in_cart( $price, $cart_item, $cart_item_key ) {
$product = $cart_item['data'];
if ( 'yes' === $product->get_meta( '_ywsbs_subscription' ) ) {
return $price;
}
return 'Rent: ' . $price . '/day';
}
add_filter( 'woocommerce_cart_item_price', 'cp_change_product_price_display_in_cart', 10, 3 );
相关文章