Quote:
Originally Posted by joyfulmiller
I've read several other threads about how to redirect after logout to a specific URL, but none of them seem to work for me.
I want to be able to direct my paid members to my public homepage after logging out of the forum. I'm assuming I need to add/change something in login.php, but what do I do? I have vBulletin 3.8.3.
I should add that I'm using the integration plugin for aMember as well. When I click logout on my forum, it currently redirects to the aMember login screen.
|
Go to your Acp->Plugins & Products->Add New Plugin.
For Hook Location choose: logout_process
For Title enter whatever name you want
Execution Order leave it to 5
And where it says: Plugin PHP Code enter this code:
PHP Code:
$vbulletin->url = 'http://www.logoutredirecturl.com';
standard_redirect();
And replace
Code:
http://www.logoutredirecturl.com
with the actual url where you want to redirect your members when logging out of your forum
And as last but not least, set to Yes the Plugin is Active option.