注册后Prestashop 1.7.6.5将客户重定向到自定义模块控制器

时间:2020-07-04 05:10:23

标签: prestashop-1.7

我希望客户成功注册后,他将重定向到自定义页面。

这是我的模块自定义代码,但是它不会重定向客户,而是将他带回到注册表中

public function hookActionCustomerAccountAdd($params){
        if (!isset($params['newCustomer']) || !isset($params['newCustomer']->id)) {
            return;
        }
        $id_customer = $params['newCustomer']->id;
        $this->context->link->getModuleLink('customerslist', 'success');
        $this->context->link->getModuleLink('customerslist', 'success');

        echo $this->context->link->getModuleLink('customerslist', 'success');
        Tools::redirect($this->context->link->getModuleLink('customerslist', 'success'));
        exit();

0 个答案:

没有答案