kacap Posted February 1, 2019 Share Posted February 1, 2019 Cześć, Czy podpowie ktoś w jaki sposób w wtyczce PayU (https://github.com/PayU/plugin_prestashop) zrobić przekierowanie na order-confirmation.php po dokonanej płatności? Link to comment Share on other sites More sharing options...
0 redtyper Posted February 6, 2019 Share Posted February 6, 2019 Spróbuj zmienić w pliku /payu/controllers/front/success.php W linii 96 return Hook::exec('displayOrderConfirmation', $params); Na Tools::redirectLink(__PS_BASE_URI__ . 'order-confirmation.php'); } Czyli tak ma wyglądać funkcja private function displayOrderConfirmation() { $params = $this->displayHook(); if ($params && is_array($params)) { Tools::redirectLink(__PS_BASE_URI__ . 'order-confirmation.php'); } return false; } Link to comment Share on other sites More sharing options...
0 kacap Posted February 7, 2019 Author Share Posted February 7, 2019 niestety nie działa, dalej robi przekierowanie na module/payu/success?id=.... Link to comment Share on other sites More sharing options...
0 redtyper Posted February 7, 2019 Share Posted February 7, 2019 (edited) 4 hours ago, kacap said: niestety nie działa, dalej robi przekierowanie na module/payu/success?id=.... A czemu nie zmodyfikujesz pliku na który przekierowuje ? /payu/views/templates/front/status17.tpl Edited February 7, 2019 by redtyper (see edit history) Link to comment Share on other sites More sharing options...
0 PayU Posted February 15, 2019 Share Posted February 15, 2019 (edited) Adres powrotu do sklepu jest definiowany jako parametr continueUrl żądania API czyli trzeba zmianić linię https://github.com/PayU/plugin_prestashop/blob/master/payu/payu.php#L930 Jaki jest cel tej zmiany? Edited February 15, 2019 by PayU (see edit history) Link to comment Share on other sites More sharing options...
0 kacap Posted February 19, 2019 Author Share Posted February 19, 2019 Mam moduł który przesyła dane dotyczące zamówienia. Dane te są przechowywane w cookies i w momencie dojścia do order-confirmation.php wszystko jest ok ale PayU kónczy transakcje na innej stronie. Link to comment Share on other sites More sharing options...
Question
kacap
Cześć,
Czy podpowie ktoś w jaki sposób w wtyczce PayU (https://github.com/PayU/plugin_prestashop) zrobić przekierowanie na order-confirmation.php po dokonanej płatności?
Link to comment
Share on other sites
5 answers to this question
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