Jump to content

Redirect to "$base_url" after log out?


dzoxen

Recommended Posts

Easy...

 

In PS 1.5 edit the file: classes/controller/FrontController.php

Locate:

elseif (isset($_GET['mylogout']))
{
	$this->context->customer->mylogout();
	Tools::redirect(isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null);
}

Change for:

elseif (isset($_GET['mylogout']))
{
	$this->context->customer->mylogout();
	Tools::redirect('index.php');
}

Regards.

  • Like 1
Link to comment
Share on other sites

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