Author: blurredvision, Posted: Tue Dec 16, 2003 7:55 pm Post subject: How do I set to receive a newsletter by default?
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.
Author: gschoper, Posted: Tue Dec 16, 2003 10:18 pm Post subject: Re: How do I set to receive a newsletter by default?
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.
HTH,
gschoper
Author: aabbcc, Posted: Sun Feb 22, 2004 7:59 pm Post subject: Re: How do I set to receive a newsletter by default?