Guest Posted January 30, 2013 Share Posted January 30, 2013 (edited) Hi, I installed PayPal Module 3.4.4 on Prestashop 1.5.2 and when I choose PayPal as payment (in step 5) method I get immediately redirected to paypal.com to perform payment. If I choose "Pay by bank wire" I can see a page (front-end url: module/bankwire/payment, tpl-files url: modules/bankwire/views/templates/) where I can confirm my order or come back and choose another payment method. I'd like to do the same thing for PayPal, but this page just doesn't show up even if I saw that exists modules/paypal/views/templates/front/order-summary.tpl which is just what I want... btw paypal module (unlike bankwire) just skips this step! Before trying to mess with php files (by the way I wouldn't know what to do exactly) I want to ask you if this can be easily fixed. I want that customers confirm their order (so that this can be appear in the back office with the status "Awaiting PayPal Payment") and then redirect customers to paypal.com to ultimate payment (and automatically update order status to "Payment Accepted"). I know this is possible (obv), but is there a (relatively) easy way to do so? I know some php, but I'd like to edit as little as possible... Please help EDIT: I attach here the piece of html code of the step 5 page where customers can choose payments method: <div id="HOOK_PAYMENT"> <!-- BANKWIRE MODULE --> <p class="payment_module"> <a href="http://www.mysite.com/en/module/bankwire/payment" title="Pay by bank wire"> <img src="/modules/bankwire/bankwire.jpg" alt="Pay by bank wire" height="49" width="86" /> Pay by bank wire </a> </p> <!-- PAYPAL MODULE --> <p class="payment_module"> <a href="javascript:void(0)" onclick="$('#paypal_payment_form').submit();" id="paypal_process_payment" title="Pay with PayPal"> <img src="/modules/paypal/img/logos/EN_PayPal_logo_100x45.gif" alt="Pay with PayPal" /> Pay with PayPal </a> </p> <form id="paypal_payment_form" action="http://www.mysite.com/modules/paypal/express_checkout/payment.php" data-ajax="false" title="Pay with PayPal" method="post"> <input name="express_checkout" value="payment_cart" type="hidden"> <input name="current_shop_url" value="http://www.mysite.com/en/order?step=3" type="hidden"> </form> </div> Edited January 30, 2013 by Guest (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts