Quote:
Originally Posted by doubletiger
Hi, tgmorris
first at all, I am very sorry for no reply! I was busy other things. and thank you very much for your help!
by setting these 3 fields to "yes", yes, the new users can see "threaded forum view" now.
for existed users, I could not find UserCP, where is it? I am sorry I am new to vbulletin. please advise more details!
|
No worries, this works around a bug in vBulletin that tgmorris reported
Here . This should be fixed in 3.5.3, untill then there are a number of options, some more or less pretty than others, I think requiring them at signup is the lesser of two evils and easy to turn off when the fixed version is released.
The UserCP should show up on everyone's Nav Bar at the top (Something like UserCP FAQ Member List Register ... etc) Basicly the User can log in, go in there and save their options and it'll fix their individual problem.
Quote:
I have about 266 users, do I have to edit them one by one? is that a way I can only edit once, them will apply to all of existed users?
by the way, how can I enable to trace this thread? so one new reply post, I will be noticed by email.
once again, many thanks for your great help and appreciate your hard work, it is very good mod!
|
Yes you can update them all at once, you have to be able to execute SQL Queries, this should work either in the vBulletin Admin area, phpMyAdmin or command line SQL, enter the following three queries:
Code:
UPDATE userfield SET field5 = 'Enable' WHERE field5 = '';
UPDATE userfield SET field6 = 'Compact' WHERE field6 = '';
UPDATE userfield SET field7 = '30' WHERE field7 = '';
This assumes of course that your using fields 5-7, if not replace those bits with what you are explicitly using.
Also you should be able to do a 'thread subscripion' at least when you make a new post, scroll down under Additional Options.
I'm glad you like it, there should be an update shortly that adresses some of the quirks found in the existing version as well.
-K