Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Require XF2.1+ Show that a user has no watched threads if they have the unread filter applied Add "watched threads backups" feature When a mass watched threads deletes happen, a backup is created Prompts users to restore if there is an empty list Adds a menu dropdown under "manage watched threads" menu" Optional expiry period for used vs unused backups Supports backingup/restoring Threadmark read tracking as well
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'
update xf_forum set send_notifications_for_by_default = 'thread';
update xf_forum set send_notifications_for_by_default = 'followed_user_thread';
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
Update installer to check conditional dependencies (Word Count Search and MultiPrefix) to ensure they are the minimum supported versions.
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 MultiPrefix support (v2.4.0+)
Add option to control default 'unread' filter Fix check for when a user has no watched threads Fix pagenav links not including filter options
We use essential cookies to make this site work, and optional cookies to enhance your experience.
See further information and configure your preferences