add_filter( 'woocommerce_available_payment_gateways', 'conditionally_disable_cod_payment_method', 10, 1);
function conditionally_disable_cod_payment_method( $gateways ){
// HERE define your Products IDs
$products_ids = array(2880);
// Loop through cart items
foreach ( WC()->cart->get_cart() as $cart_item ){
// Compatibility with WC 3+
$product_id = version_compare( WC_VERSION, '3.0', '<' ) ? $cart_item['data']->id : $cart_item['data']->get_id();
if (in_array( $cart_item['product_id'], $products_ids ) ){
unset($gateways['cod']);
break; // As "COD" is removed we stop the loop
}
}
return $gateways;
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter