Hi
How to turn on the "Remember me" feature available on phpBB when logging in via oneall social login?
Thanks.
Please sign in to your OneAll account to ask a new question or to contribute to the discussions.
Please click on the link below to connect to the forum with your OneAll account.
Answers
Hello,
do you want to disable it altogether or give the user
to enable/disable it using a checkbox?
Regards,
Hi,
I would like either to put "Remember me" set to "yes" by default or enable/disable it with a checkbox.
Thank you.
Hello,
what you can do is locate this file in your phpBB folder:
./ext/oneall/sociallogin/core/helper.php
Then search for this line:
$result = $this->user->session_create($user_id, $is_admin);
and modify it like this:
$result = $this->user->session_create($user_id, $is_admin, true);
That should activate the "remember me" feature.