kristo1980 Posted April 7, 2017 Share Posted April 7, 2017 Bonjour, j'ai cherché partout sur le forum et je trouve pas une solution qui fonctionne, je souhaite que le client soit rediriger vers la page d’accueil après la connexion au lieu de la page /mon-compte je suis sur Prestashop 1.6.4 merci pour votre aide Link to comment Share on other sites More sharing options...
kristo1980 Posted April 8, 2017 Author Share Posted April 8, 2017 up! Link to comment Share on other sites More sharing options...
Aletren Posted April 8, 2017 Share Posted April 8, 2017 créez un fichier FrontController.php dans le dossier /override/controllers/front et rajouter ces lignes dedans <?php class FrontController extends FrontControllerCore { public function getRedirectAuthenticationURL(){ $http = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']!='Off' && !empty($_SERVER['HTTPS'])) ? "https://" : "http://"); if ($_SERVER['QUERY_STRING']){ return urlencode($http.$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI']); } else { return ($this->authRedirection ? $this->authRedirection : ''); } } public function init() { $this->authRedirection = $this->getRedirectAuthenticationURL(); parent::init(); } } 1 Link to comment Share on other sites More sharing options...
kristo1980 Posted April 8, 2017 Author Share Posted April 8, 2017 Ça fonctionne enfin Merci Link to comment Share on other sites More sharing options...
webcoachonline.ch Posted August 16, 2019 Share Posted August 16, 2019 Bonjour, Je cherche aussi à rediriger les utilisateurs du groupe ID 4 vers une page spécifique du CMS. Je suis sous Prestashop 1.7.5.2 Est-ce possible? 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