Log in

View Full Version : Redirect users from forumhome based on profile field values. Ex. female=female forums


Sam1985
02-13-2007, 10:13 PM
Redirect users from forumhome based on their profile field values. Ones such as male/female so that male would be directed to the mens fitness section thread/custom page and female= female fitness thread/custom page.

This would be great for us who want to customize our forums and make it organized and to the point instead of throwing everyone to domin.com/index.php or the same forumhome.

Gio~Logist
02-14-2007, 12:50 AM
Try making a new plugin in forumhome_start

Put this in it:
if($vbulletin->userinfo['usergroupid'] == 'x'){
header("location:http://yoururlhere");
}

Replace what's necessary and you should be set.

Sam1985
02-14-2007, 03:10 AM
Try making a new plugin in forumhome_start

Put this in it:
if($vbulletin->userinfo['usergroupid'] == 'x'){
header("location:http://yoururlhere");
}

Replace what's necessary and you should be set.

Thank you much for your reply.
Please excuse me for being a noob, but here is where I am lost userinfo['usergroupid'] == 'x'){

Suppose the member is a female and I want to redirect her to www.domain.com/forum/somepage/orsomeforum
what would the code look like?

and also suppose the member want to browse the other sections forum>>fitness>>male
if she wishes to. I am scared that by going to forum it will not allow them to enter and will redirect them. Is this the case?

Thank You:)

Gio~Logist
02-14-2007, 03:15 AM
That code only affects the forum main page.

Here's the code for the profile field.

New plugin in forumhome_start
if($vbulletin->userinfo['fieldx'] == 'male'){
header("location:http://yoururlhere");
}

Replace the x in "fieldx" with the field id of the field in which asks what gender the person is. You can find this id by editing the field via admincp.

Sam1985
02-14-2007, 03:33 AM
Thank you so much!!! works like a charm.

Just one more thing to ask you gio~logist.
How do I make it so that it only occurs once during login.
Because right now If i have general discussion on the forum home it will redirect them back as soon as they enter forum home.

would this be possible to do just once or somewhere so that once they login first thing they get redirected to is their primary forums, but they can go back to forum home and the redirect will should not work again.

Thanks

Gio~Logist
02-14-2007, 03:35 AM
Hm. The only way i can think of doing that will require a new query and table in the database. I can't think of any simple way to do that off the top.

Sam1985
02-14-2007, 03:46 AM
Hm. The only way i can think of doing that will require a new query and table in the database. I can't think of any simple way to do that off the top.

I see. That's what we are really after. Will that take a lot of time or will be difficult?
Thank you for getting us here though. If you have time to help us do that, we will be forever thankful for your help. That will get us up and running.
If you do not have time, that's ok. I guess we can work with what you have posted.

Thanks again:up:

Gio~Logist
02-14-2007, 04:17 AM
Yea, it may be to much for now. However, if i have a sec i will let you know.

Sam1985
02-14-2007, 05:24 AM
Yea, it may be to much for now. However, if i have a sec i will let you know.

Great. You're the best. Whenever you get a chance. We are looking to get the site up in the next few weeks.

I have actually posted for help here (https://vborg.vbsupport.ru/showthread.php?t=139081) and on TAZ forums.

You were very helpful and fast.:cool: