WooCommerce has no built-in conditional logic for payment methods, so once you enable Cash on Delivery it shows for everyone. To make it conditional, use the woocommerce_available_payment_gatewaysfilter and unset( $gateways[‘cod’] ) when your condition is met, whether that is cart total, country, postcode, product, shipping method, or user role. Guard the code against the admin, […]