User Mentions Improvements

xF2 Add-on User Mentions Improvements 2.9.0

No permission to download
Q. Can users be bulk opt-ed in for email on mentions/quote?
A. You must run the following SQL to enable features for everyone;
Code:
update xf_user_option set sv_email_on_mention = 1;
update xf_user_option set sv_email_on_quote = 1;
Q. Why does this only support a limited number of content types?
A. A separate template modification per type needs to be used to extend the front-end UI. Additional backend support is also required.
Top