• A valid XenForo Licence validation token will be required to complete signup and purchasing.
    This may retrieve this from the XenForo Customer Area.
  • All XenForo 2.3+ add-ons require at least php 8.0, recommend php 8.2+
    All XenForo 2.2+ add-ons require at least php 7.2, recommend php 8.x
    All XenForo 2.0-2.1 add-ons require at least php 5.6, recommend php 7.x.
    The Standard Library add-on is also required.
    Older php versions are not supported, and add-ons will either refuse to install or fail to function.
  • Automatic discounts are applied for orders above $100 USD (10%) or for early renewals (5%)

Watched Threads Filtering 1.2.1

Change log

  • Disable workaround for Watched Forum alerts being unexpectedly ignored for XF2.1.4+
  • Add "Send notifications by default for" to setup new users to watch a forum an recieve alerts (not emails)

    To enroll all forums to be watched for new threads by default;
    SQL:
    update xf_forum
    set send_notifications_for_by_default = 'thread';

    To enroll all forums to be watched for new threads by followers by default (Requires Thread Starter Alerts v2.1.0+);
    SQL:
    update xf_forum
    set send_notifications_for_by_default = 'followed_user_thread';

    Update existing user's watched forum configuration( Requires Thread Starter Alerts v2.1.0+);
    SQL:
    insert ignore into xf_forum_watch (user_id, node_id, notify_on,send_alert)
    select xf_user.user_id, xf_forum.node_id, 'followed_user_thread', 1
    from xf_user, xf_forum
    where xf_user.is_banned = 0 and xf_user.user_state = 'valid'
Back
Top