cancel
Showing results for 
Search instead for 
Did you mean: 

Credit card payments

SOLVED

Credit card payments

Hi!

 

I've got a Magento 1.9.3.4 website running Paypal. If I try to activate Pay by Credit Card (Redsys, Adyen or whenever), this kind of payment doesn't work. The process stops on the code which calls pay platform, without any error message in any log file.

 

I've deactivated all plugins and OneStepCheckout, but when I try to pay with standard Checkout, I can only see steps 1 and 2, no more. And I still don't have any error message in log files.

 

What is the problem?

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Credit card payments

Finally I could find the bug.
In 

app/design/frontend/<package/<theme>/template/checkout/onepage/payment.phtml

I've changed the current code inside <form> tags with

<div class="fieldset" ">
        <?php echo $this->getChildChildHtml('methods_additional', '', true, true) ?>
      <fieldset id="checkout-payment-method-load">
        <?php echo $this->getChildHtml('methods') ?>
            </fieldset>
        <?php echo $this->getBlockHtml('formkey') ?>
    </div>

 

View solution in original post

1 REPLY 1

Re: Credit card payments

Finally I could find the bug.
In 

app/design/frontend/<package/<theme>/template/checkout/onepage/payment.phtml

I've changed the current code inside <form> tags with

<div class="fieldset" ">
        <?php echo $this->getChildChildHtml('methods_additional', '', true, true) ?>
      <fieldset id="checkout-payment-method-load">
        <?php echo $this->getChildHtml('methods') ?>
            </fieldset>
        <?php echo $this->getBlockHtml('formkey') ?>
    </div>