Shadow-Lord Posted April 15, 2011 Share Posted April 15, 2011 Hi, Is there a way to get PayPal Express to go to the Confirmation Page and then go to PayPal. The Customer can not confirm their order as it goes straight to PayPal from the Select Payment Type page. Thanks, Link to comment Share on other sites More sharing options...
FIMBLE Posted April 15, 2011 Share Posted April 15, 2011 not with express, does it not come nack to your store then go to the checkout confirmation? Sometimes you're the dog and sometimes the lamp post [/url] My Contributions Link to comment Share on other sites More sharing options...
Shadow-Lord Posted April 15, 2011 Author Share Posted April 15, 2011 not with express, does it not come nack to your store then go to the checkout confirmation? Hi, Yes it does come back to the store, but it goes to the Checkout Success page. The Customer never sees the Checkout Confirmation page. Link to comment Share on other sites More sharing options...
Harald Ponce de Leon Posted April 15, 2011 Share Posted April 15, 2011 Hi.. It's a feature of the PayPal Express Checkout module. The customer already confirms their order at PayPal so they do not need to confirm it again a second time returning back to the shop. Kind regards, , osCommerce Link to comment Share on other sites More sharing options...
Shadow-Lord Posted April 15, 2011 Author Share Posted April 15, 2011 Hi.. It's a feature of the PayPal Express Checkout module. The customer already confirms their order at PayPal so they do not need to confirm it again a second time returning back to the shop. Kind regards, Hi Harald, Is there anyway to change this, so that it goes to Checkout Confirmation page, then on to PayPal. Thanks Link to comment Share on other sites More sharing options...
Harald Ponce de Leon Posted April 15, 2011 Share Posted April 15, 2011 In includes/modules/payment/paypal_express.php, change pre_confirmation_check() to: function pre_confirmation_check() { global $HTTP_GET_VARS, $order, $ppe_token; if (!tep_session_is_registered('ppe_token')) { tep_redirect(tep_href_link('ext/modules/payment/paypal/express.php', '', 'SSL')); } if (!isset($HTTP_GET_VARS['do'])) { $response_array = $this->getExpressCheckoutDetails($ppe_token); if (($response_array['ACK'] == 'Success') || ($response_array['ACK'] == 'SuccessWithWarning')) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_CONFIRMATION, 'do=confirm', 'SSL')); } } } Kind regards, , osCommerce Link to comment Share on other sites More sharing options...
Harald Ponce de Leon Posted April 15, 2011 Share Posted April 15, 2011 Beware, untested :-) Keep posting in this topic if there are problems with it. Kind regards, , osCommerce Link to comment Share on other sites More sharing options...
Harald Ponce de Leon Posted April 15, 2011 Share Posted April 15, 2011 This might also work somewhat better: function pre_confirmation_check() { global $ppe_token; if (!tep_session_is_registered('ppe_token')) { tep_redirect(tep_href_link('ext/modules/payment/paypal/express.php', '', 'SSL')); } } Kind regards, , osCommerce Link to comment Share on other sites More sharing options...
Shadow-Lord Posted April 15, 2011 Author Share Posted April 15, 2011 Hi, I tried both of those, but it still goes straight to PayPal, when I click Continue on checkout_payment.php Link to comment Share on other sites More sharing options...
Harald Ponce de Leon Posted April 15, 2011 Share Posted April 15, 2011 Ok, you're after something else because that will change how Express Checkout works. You should try the PayPal Website Payments Standard module. Kind regards, , osCommerce Link to comment Share on other sites More sharing options...
Shadow-Lord Posted April 15, 2011 Author Share Posted April 15, 2011 Ok, you're after something else because that will change how Express Checkout works. You should try the PayPal Website Payments Standard module. Kind regards, Will PayPal Website Payments Standard module, work similar to the express checkout. Will it return the customer to the shop. And will it update the order process in the admin section. Thanks, Link to comment Share on other sites More sharing options...
Harald Ponce de Leon Posted April 15, 2011 Share Posted April 15, 2011 Yes, yes, yes :-) Try it. Kind regards, , osCommerce Link to comment Share on other sites More sharing options...
Shadow-Lord Posted April 15, 2011 Author Share Posted April 15, 2011 Yes, yes, yes :-) Try it. Kind regards, Thanks for all your help. Link to comment Share on other sites More sharing options...
Shadow-Lord Posted April 15, 2011 Author Share Posted April 15, 2011 Hi, I have tried paypal website payments standard, but when the customer pays, it does not automatically return the customer to the checkout success page. They have to click the return to site button on paypal to get to it. If they don't click it no emails are sent. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.