Jump to content

redirection après connexion


Recommended Posts

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

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();
    }
}
  • Like 1
Link to comment
Share on other sites

  • 2 years later...

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...