removing ccv requirement
-
- Commander (CMDR)
- Posts: 182
- Joined: Tue Jan 27, 2009 2:29 pm
removing ccv requirement
How do I get rid of the security code requirement on the checkout form? We don't use it. Don't need it.
Re: removing ccv requirement
Take a look at the Checkout\PaymentForm\CreditCardPaymentForm.ascx file. It is the user control that gets the credit card info.
In 7.0.3 there are two validators for the CVV code: SecurityCodeValidator2 and SecurityCodeValidator. Try removing all the CVV user interface code. In the places where the code looks for SecurityCode.Text, just use string.Empty. That should (hopefully) satisfy the payment processing code.
If you are using a payment process, you may need to set up the process so that it doesn't require CVV otherwise your transactions may fail.
In 7.0.3 there are two validators for the CVV code: SecurityCodeValidator2 and SecurityCodeValidator. Try removing all the CVV user interface code. In the places where the code looks for SecurityCode.Text, just use string.Empty. That should (hopefully) satisfy the payment processing code.
If you are using a payment process, you may need to set up the process so that it doesn't require CVV otherwise your transactions may fail.