Jump to content
  • 0

PayU - przekierowanie po dokonanej płatności na order-confirmation


kacap

Question

5 answers to this question

Recommended Posts

  • 0

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...