Watched Threads Filtering

Watched Threads Filtering 1.11.2

No permission to buy ($30.00)
  • 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'
  • Fix work-around for Watched Forum alerts not being sent when "Replies to a watched thread" alert opt-out is set
  • Add options icon
  • Fix missing css for watched threads page when the thread list is empty
  • Integrate with Optimized List Queries to hopefully support better query performance
  • Reduce query count for fetching phrases, recommened MultiPrefix v2.5.13+ if MultiPrefix is installed.
  • Work-around for Watched Forum alerts not being sent when "Replies to a watched thread" alert opt-out is set
  • Keep filters when applying bulk watched thread operations on the watched thread page
  • Redirect old watched/threads/all links to watched/threads?unread=0
  • php 7.3 compatibility fix
  • Support filtering by Word Count
    • Requires Word Count Search v2.3.0+
    • Requires Threadmarks to populate a thread's word count.
  • Click on forum to select a filter
  • Click on prefix to select a filter
  • Add option to control default 'unread' filter
  • Fix check for when a user has no watched threads
  • Fix pagenav links not including filter options
Back
Top Bottom