我希望客户成功注册后,他将重定向到自定义页面。
这是我的模块自定义代码,但是它不会重定向客户,而是将他带回到注册表中
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();