Announcement

Collapse
No announcement yet.

Hiding "Payment Method" from checkout

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

    Hiding "Payment Method" from checkout

    I'm only accepting credit cards on our website.
    I would like to eliminate the drop down box for "Payment Card Type" on Checkout Page 02.

    Is there a way of doing this, perhaps by using a hidden value or something similar.

    Thanks
    www.grafea.co.uk
    Vintage Leather briefcases

    http://www.grafea.com
    Designer leather bags
    --------------------------
    Yanni Kioupouroglou

    #2
    Ok, I found a solution but I need the unique number for "credit card capture" payment method which is not 950. Anyone knows it?

    Replace layout "Payment Method selection":

    <tr>
    <td>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PaymentPrompt000Required%22%20%2f%3e"><span class="actrequired"></actinic:block>
    <Actinic:Variable Name="PaymentPrompt000"/>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PaymentPrompt000Required%22%20%2f%3e">*</span></actinic:block>
    </td>
    <td><Actinic:Variable Name="PaymentMethodOptions"/></td>
    </tr>


    with Code:

    <tr>
    <td>
    <INPUT TYPE='HIDDEN' NAME='PAYMENTMETHOD' VALUE='950'>
    </td>
    </tr>
    www.grafea.co.uk
    Vintage Leather briefcases

    http://www.grafea.com
    Designer leather bags
    --------------------------
    Yanni Kioupouroglou

    Comment

    Working...
    X