Log in

View Full Version : Change users to automatically subscribe to threads.


cobaltcoupe
04-02-2007, 12:54 AM
Every time my users post a thread or reply to one, when they check in their user cp there is nothing listed when they click list subscriptions. I know by default they have to click that button to subscribe, but is there any way that I can change it so every thread or every reply they make is listed under the subscriptions when they click it?

WetWired
04-02-2007, 01:20 AM
For the user:
UserCP|Edit Options| Messaging & Notification|Default Thread Subscription Mode|No Email Notification

To default it this way:
AdminCP|VBulletin Options|Help User Registration Options|Default Registration Options|Automatic Thread Subscription Mode|Subscribe with no notification

To set everyone this way:
UPDATE user SET autosubscribe=0

SaddleBrooke
06-09-2007, 10:43 PM
You mention a code string above. Does this code string change forum members selection to default to daily subscriptions? If so, how do I implement that code string?

When I initially setup the forums I selected the default to be that they didnt subscribe and now I want to change it for my several thousand users. Thank you.

WetWired
06-09-2007, 11:55 PM
UPDATE user SET autosubscribe=2
You'll need to run this query through the CP or phpmyadmin. Be sure to backup your database before running queries.

Dismounted
06-10-2007, 02:45 AM
And add your table prefix before "user" if you have one.