Hi,

Is there a way to set up notify to be enabled for old users. I was thinking of using phpmyadmin, and messing about there.
Also Is there a way in the user settings page to have a notify enable setting. This way, people who register are automatically registered for Notify.

Antonio
www.nyclightwave.com

Comments

cgdigitaltreats’s picture

Hi,

Feature request. (For Admins)
In the user directory, where there are filters, could there be one that activates notification for all users via checkmark. THis would turn on all the notify features for all users or checkmarked user. A great feature would be to add a checkmark in the Notify Setup page that would by default turn on all the subscription features for all new users to on. Currently they are all off and the user has to turn them on to subscribe to notify.

Just an idea.

Antonio

cgdigitaltreats’s picture

OK,

Does anyone know how to set the notifiy attributes to enable and checkmark all the criteria, for all your users.
I like this plugin, but it's set to off as a default. Is there a form, where you can check mark all the features for all of your users at once?

Antonio

cgdigitaltreats’s picture

hi,
Does anyone know how to set the notifiy attributes to enable and checkmark all the criteria, for all your users.
I like this plugin, but it's set to off as a default. Is there a form, where you can check mark all the features for all of your users at once?

Antonio

teradome’s picture

I agree, this shouldn't be an issue for most sites if Notify supported hooks into the profile, so we could require opt-in and settings at registration time. And if Notify supported a Required mode, for intranet-grade use, then opt-in can be implicit in registration and defaults would be used for all users.

To do it for folks already in the system, you can always fall back to doing a SQL command to turn them all on.

INSERT INTO notify (uid, status, node, comment, attempts, teasers)
SELECT uid, 1, 1, 1, 0, 1
FROM users
WHERE uid > 0 AND NOT EXISTS (
SELECT * FROM notify
WHERE notify.uid = users.uid
)

Just double check the structure of notify to make sure it all lines up.

cgdigitaltreats’s picture

Hi teradome,

This worked perfectly.

Thank you for your help.

Antonio

mdowsett’s picture

Status: Active » Closed (fixed)