jikail Posted November 11, 2020 Share Posted November 11, 2020 (edited) Bonjour à tous, J'ai fais une réinstallation, mais depuis j'ai un gros soucis. Quand je log un customer et que ça passe par le CustomerLogin j'ai bien ce code qui est executé if (isset($authentication->active) && !$authentication->active) { $this->errors[''][] = $this->translator->trans('Your account isn\'t available at this time, please contact us', [], 'Shop.Notifications.Error'); } elseif (!$authentication || !$customer->id || $customer->is_guest) { $this->errors[''][] = $this->translator->trans('Authentication failed.', [], 'Shop.Notifications.Error'); } else { $this->context->updateCustomer($customer); Hook::exec('actionAuthentication', ['customer' => $this->context->customer]); // Login information have changed, so we check if the cart rules still apply CartRule::autoRemoveFromCart($this->context); CartRule::autoAddToCart($this->context); } } Je passe bien par le else, par contre dès que la fonction est terminé le customer dans le context est null, alors qu'ici j'ai bien le bon customer. J'ai un autre soucis je sais pas si c'est liée mais le panier est toujours vide comme si le context était reset. Auriez vous des pistes svp? J'ai peut-être mal configuré quelque chose? Merci beaucoup Edited November 15, 2020 by jikail (see edit history) Link to comment Share on other sites More sharing options...
doekia Posted November 11, 2020 Share Posted November 11, 2020 Activer le debug, inspecter la console du navigateur Link to comment Share on other sites More sharing options...
jikail Posted November 11, 2020 Author Share Posted November 11, 2020 (edited) Le soucis venait du cache prestashop Edited November 15, 2020 by jikail (see edit history) Link to comment Share on other sites More sharing options...
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