I need to remove some fields from the page where credit card info is entered. I do not want to ask for address fields and I want to remove the CCV field. How do I go about this?
Removing Fields If they are required, then you will have to manually populate the html with a value. For CVV this sounds like a show stopper. If you edit the html you will have something like: <input type="text" id="CVV" /> You could change it to something like: <input type="text" id="CVV" style="visible:false" value="" /> This would always pass CVV with a blank. The name of the field is very likely different.