0
我正在使用YITH WooCommerce訂閱,並且我想檢查我的購物車是否訂閱了我想禁用我的支付網關之一。我怎麼辦?檢查購物車在YITH WooCommerce訂閱Wordpress中是否有活動訂閱
我已經試過這段代碼,但這是行不通的。
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;
}
}