PDA

View Full Version : How do you Customize "Logout"


HUMMERh3
02-08-2010, 04:23 AM
When members click on "logout" link vBulletin usually takes them back to the homepage. Is there anyway I can edit which url it takes them to?

--------------- Added 1265648880 at 1265648880 ---------------

Any ideas?

manu3569
02-08-2010, 07:18 PM
I'm not sure if there's any URL variables you can set, but if you create a plugin for the logout_process hook you can try something like this:


header('Location: http://www.wesite.com/page.php');
exit();

Lynne
02-08-2010, 07:26 PM
You posted this on vb.com also and I posted a response there. This also looks like a good solution.