frankhelps Posted December 7, 2018 Share Posted December 7, 2018 Hello, the logout (Sign out) if you are logged in and want to log out is not working. I heard you can solve it with htaccess. I try to change the code in prestashop folder so it works hopefully. Link to comment Share on other sites More sharing options...
frankhelps Posted December 7, 2018 Author Share Posted December 7, 2018 Hi, I solved the problem: The problem is that there is missing a piece of Link in the Software. You have to add this: go to: prestashop/modules/ps_customersignin/ps_customersignin.php change that line: return array( 'logged' => $logged, 'customerName' => $customerName, 'logout_url' => $link->getPageLink('index', true, null, 'mylogout'), <---- that line is wrong 'my_account_url' => $link->getPageLink('my-account', true), to: return array( 'logged' => $logged, 'customerName' => $customerName, 'logout_url' => $link->getPageLink('my-account', true, null, 'mylogout'), 'my_account_url' => $link->getPageLink('my-account', true), Now the logout link is fine. So replace 'index' to 'my-account' You can search that part with your search-tool in the ps_customersignin.php: just enter: 'index', true, and replace 'index' with 'my-account' THANKS to the great community here, solved many problems for me, this is my contribute back, hope it helps the one or another 1 Link to comment Share on other sites More sharing options...
Steve Shepherd Posted June 18, 2020 Share Posted June 18, 2020 This problem still exists in 1.7.6.4. But the fix works perfectly. Link to comment Share on other sites More sharing options...
Steve Shepherd Posted June 18, 2020 Share Posted June 18, 2020 This problem still exists in 1.7.6.4. But the fix works perfectly. 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