Groove Posted February 11, 2012 Share Posted February 11, 2012 Hi I have just found an error on a button on the PayPal Module. when selecting Paypal as your choosen payment method you go onto the PayPal Order summary page, at the bottom you have 2 buttons 1 to confirm the order "I confirm my order" and the other one " Other Payments Methods" which should take you back to step 3 selecting a payment method. When you click that you will get a 404 page not found, heres the edit to solve the error navigate to modules---->PayPal-----confirm.tpl look for the following lines of code around line 57 <p class="cart_navigation"> {if isset($paypalError)} <a href="order.php?step=3" class="button_large">{l s='Return' mod='paypal'}</a><br /><br /> <span style="color: red;">{l s='Session expired, please go back and try again' mod='paypal'}</span> {else} <a href="order.php?step=3" class="button_large">{l s='Other payment methods' mod='paypal'}</a> <input type="submit" name="submitPayment" value="{l s='I confirm my order' mod='paypal'}" class="exclusive_large" /> {/if} </p> and change to this <p class="cart_navigation"> {if isset($paypalError)} <a href="{$link->getPageLink('order.php', true)}?step=3" class="button_large">{l s='Return' mod='paypal'}</a><br /><br /> <span style="color: red;">{l s='Session expired, please go back and try again' mod='paypal'}</span> {else} <a href="{$link->getPageLink('order.php', true)}?step=3" class="button_large">{l s='Other payment methods' mod='paypal'}</a> <input type="submit" name="submitPayment" value="{l s='I confirm my order' mod='paypal'}" class="exclusive_large" /> {/if} </p> this will solve it. Groove :-) Link to comment Share on other sites More sharing options...
tafisa Posted February 13, 2012 Share Posted February 13, 2012 Thanks my friend, I just discover this problem yesterday. But today I rebooted the Paypal module and now I have another problem, when I click on Paypal payment it redirects to Paypal directly, before was not the same, I was redirected to another page (where it was your problem). Any solution???? Eddie Link to comment Share on other sites More sharing options...
tafisa Posted February 13, 2012 Share Posted February 13, 2012 I can see that I am redirected to : modules/paypal/standard/redirect.php And I need to be redirected to: modules/paypal/payment/submit.php Any idea ??? Link to comment Share on other sites More sharing options...
maroldas Posted June 22, 2012 Share Posted June 22, 2012 (edited) Hi Groove! So you helped me solve a problem with PayPal, but I still get the same problem with Google Checkout. Do you have any ideas? Thank you in advance Edited June 22, 2012 by maroldas (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now