Removing required fields

Discussion in 'Payments processing' started by maartenvr, Feb 21, 2009.

  1. maartenvr

    maartenvr New Member

    Joined:
    Aug 25, 2006
    Messages:
    6
    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?
  2. aai2on

    aai2on New Member

    Joined:
    Oct 16, 2008
    Messages:
    24
    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.

Share This Page