Announcement

Collapse
No announcement yet.

Manual Payment - Credit Card list

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Manual Payment - Credit Card list

    Hi,

    Hopefully this is just a quick change, but in the Manual Payment section of Checkout Page 2 the Credit Card list (currently set to use Standard_Credit_Card_Type_List) the values are being shown as text to the right of the drop down rather than as selections in the dropdown.

    Due to this, there is no available options for the customer to choose and they can't use the manual payment process.

    The code in Checkout Page 2 is:

    <select name="PAYMENTCARDTYPE" size="1">Standard Credit Card Type List
    </select>


    Cheers!

    Stuart
    Tacklebargains.co.uk

    Located: Cheshire, UK

    #2
    Hi Stuart

    I'm not fully understanding this issue, is there any chance you can put a bit more information or a screenshot to explain the problem please.

    Many thanks
    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      Hi Nadeem,

      I have fixed this now by adding the items manually to the select list, but in case anyone else ever gets this the problem was that the Manual Payment drop down list was empty, and the items which should have been populated in it were to the right of it in plain text (eg. Mastercard, Visa, Delta etc).

      To get round this, instead of using the Actinic Variables to enter the card types, I simply changed the html code manually so it read:

      <select name="PAYMENTCARDTYPE" size="1">
      <option value="Mastercard" selected>Mastercard</option>
      <option value="Visa">Visa</option>
      <option value="Delta">Delta</option>
      .
      .
      .
      </select>

      That has made it work fine.

      Cheers,

      Stuart
      Tacklebargains.co.uk

      Located: Cheshire, UK

      Comment

      Working...
      X