私の WooCommerce ストアでは、製品にカテゴリ ID「266」の特定の製品カテゴリがある場合にのみ、支払いゲートウェイ (小切手) を制限して表示したいと考えています。今、私はこのスニペットを持っていますが、それは逆です - 特定の製品カテゴリのチェックアウトでゲートウェイを無効にしました:
add_filter( 'woocommerce_available_payment_gateways', 'bbloomer_unset_gateway_by_category' );
function bbloomer_unset_gateway_by_category( $available_gateways ) {
if ( is_admin() ) return $available_gateways;
if ( ! is_checkout() ) return $available_gateways;
$unset = false;
$category_ids = array( 8, 37 );
foreach ( WC()->cart->get_cart_contents() as $key => $values ) {
$terms = get_the_terms( $values['product_id'], 'product_cat' );
foreach ( $terms as $term ) {
if ( in_array( $term->term_id, $category_ids ) ) {
$unset = true;
break;
}
}
}
if ( $unset == true ) unset( $available_gateways['cheque'] );
return $available_gateways;
}