Quote:
Originally Posted by Bonjax
Thanks for that feedback, wasn't aware of that. That would be a concern although I wonder how many new members are gained by having an open system. Would they more than offset the current users that can't access the site?
If the chat box is enabled for everybody some now may be blocked at work but many have cellphones and they can access the forum when not at work.
Wish I had more data to make the call, guess it would be trial and error.
How do you make it an "opt-in" system? is there a page where people can click on something to "opt in"? Or do you use another method?
Appreciate your feedback.
|
I made a custom user profile field in the Admin CP,
User Profile Field Manager.
Make a single selection radio box.
Options:
Yes
No
Not required.
Then edit this plugin in Plugin Manager...
Put the ENTIRE code of the plugin inside a conditional like:
Code:
if ($vbulletin->userinfo['field5'] == "Yes")
{
// all original code here
}
where "field5" is whatever field number vbulletin assigns to your new field:
field5, field6, field7, whatever...
Note: Check carefully because the field number is not always the same as the display order- you don't care about the display order, just the field number.