As of right now, when a new user signs up for my site, the option to receive a newsletter is defaulted to No in their profile. How can I change this to default to Yes, so they will actually have to select No in order to not receive one?
Thanks.
gschoper Captain
Joined: Sep 16, 2003
Posts: 380
Posted:
Tue Dec 16, 2003 10:18 pm
Run the following sql statement against your database:
Code:
ALTER TABLE `nuke_users` CHANGE `newsletter` `newsletter` INT( 1 ) DEFAULT '1' NOT NULL;
This will set the default to Yes for all new accounts.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum