I would disable cash on delivery only for certain customer (based on email).
I've just try with
$chk_abc = $_SESSION['cart']->in_cart_check(''customers_email_address', '[email protected]');
if ( ($this->enabled == true) && ( $chk_abc != '[email protected]' ) ) $this->enabled = false;
}
but it don't work. Help me with a suggestion


Reply With Quote

