- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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>
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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>