sangelo Posted March 25, 2006 Posted March 25, 2006 Another newbie question.. I've got a stock install of 2.2 and am only accepting paypal as payments. The paypal module works fine, but I have the same problem of the order not being recognized unless the customer clicks on "Return to Merchant" in paypal. I know there are some fixes out there, but in the meantime I'd like to have text displayed just above the "confirm order" button the on the checkout_confirmation page to display a message reminding them to do this.. This will buy me a few days to setup a test installation and work thru the issue. Hoping someone can help... Thanks
mhunter Posted May 24, 2006 Posted May 24, 2006 I am having the same problem here - if the user does not click the button "return to merchant" - the order is not processed on the oscommerce side - however their credit card is still charged. I had my return URL set up as http://webaddress.com/checkout_process.php Can anyone advise? Thx
Jack_mcs Posted May 25, 2006 Posted May 25, 2006 The oscommerce_paypal_IPN contribution should be installed so that this is no longer a problem. But for the code, find this in checkout confirmation <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td align="right" class="main"> <?php if (isset($$payment->form_action_url)) { and change it to <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><?php echo CONFIRM_REMINDER; ?></td> </tr> <tr> <td align="right" class="main"> <?php if (isset($$payment->form_action_url)) { Then add this in includes/languages/english/checkout_confirmation: define('CONFIRM_REMINDER', '<font color="red">STOP: You are not done yet! After clicking on the Confirm button below, you will still have one last step to perform before your order is actually Confirmed. Please be sure to complete the steps on the next page.</font>'); Change the text to what suits you, of course. Jack Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. All of My Addons Get the latest versions of my addons Recommended SEO Addons
mhunter Posted May 25, 2006 Posted May 25, 2006 Thanks Jack Is it up to PayPal to change the button values - right now the page says: "Your order has been processed" with the button reading: "return to merchant" At the very least, the button should read 'continue'. I have so far not found a way to customize this page with the lowest paying acct at PayPal (standard I believe it is called) Ho hum. I had planned on trying to get them on the phone this weekend - as it seems it is a paypal issue The oscommerce_paypal_IPN contribution should be installed so that this is no longer a problem. But for the code, find this in checkout confirmation <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td align="right" class="main"> <?php if (isset($$payment->form_action_url)) { and change it to <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><?php echo CONFIRM_REMINDER; ?></td> </tr> <tr> <td align="right" class="main"> <?php if (isset($$payment->form_action_url)) { Then add this in includes/languages/english/checkout_confirmation: define('CONFIRM_REMINDER', '<font color="red">STOP: You are not done yet! After clicking on the Confirm button below, you will still have one last step to perform before your order is actually Confirmed. Please be sure to complete the steps on the next page.</font>'); Change the text to what suits you, of course. Jack
mhunter Posted May 25, 2006 Posted May 25, 2006 I just read the paypal contribution info Jack suggested and this is what i need to install - it's probably best to just do this and not worry what happens on the paypal site. Thx Thanks Jack Is it up to PayPal to change the button values - right now the page says: "Your order has been processed" with the button reading: "return to merchant" At the very least, the button should read 'continue'. I have so far not found a way to customize this page with the lowest paying acct at PayPal (standard I believe it is called) Ho hum. I had planned on trying to get them on the phone this weekend - as it seems it is a paypal issue
Jack_mcs Posted May 25, 2006 Posted May 25, 2006 You should switch to a Business account. It doesn't cost you anything. The lowest, personal, account won't work with oscommerce, unless Paypal has changed that recently. The Premier account will work but your customers will recieve your personal account name instead of the businesses. As for the look, paypal allows you to change the look of the payment page to match your site. Although I am not sure about changing the text of the button. Jack Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. All of My Addons Get the latest versions of my addons Recommended SEO Addons
Recommended Posts
Archived
This topic is now archived and is closed to further replies.