【发布时间】:2017-03-07 02:34:13
【问题描述】:
我正在使用 YITH WooCommerce 订阅,我想检查我的购物车中是否有订阅我想禁用我的支付网关之一。我该怎么办?
我已经尝试过这段代码,但这不起作用。
add_filter( 'woocommerce_available_payment_gateways', 'filter_gateways', 1);
function filter_gateways( $gateways ){
if (has_woocommerce_subscription('','','active')) {
unset( $gateways['pin_payments'] );
}
return $gateways;
}
function has_woocommerce_subscription($the_user_id, $the_product_id, $the_status) {
$current_user = wp_get_current_user();
if (empty($the_user_id)) {
$the_user_id = $current_user->ID;
}
if (WC_Subscriptions_Manager::user_has_subscription( $the_user_id, $the_product_id, $the_status)) {
return true;
}
}
【问题讨论】:
标签: wordpress woocommerce subscriptions