I've ported parts of asinshesq 's MOD View or mark unread posts . It needs to add a "Mark forums read" link to the search _ results .html , right below the "Go to advanced search" link. I tried to make things a bit cleaner by moving the event outside of the <p> element but the re...
I've ported parts of asinshesq 's MOD View or mark unread posts . The extension needs to modify the SQL query which fetches the unread topics data in the function get_unread_topics() in /includes/functions.php , right after the $sql_array variable is assembled (in 3.1.2 after line 1692). /** * Chan...
FYI, there's a MOD in the MOD database that does the same thing: https://www.phpbb.com/customise/db/mod/ ... nt_forums/
It needs significantly fewer database queries, in the best case zero additional queries even, because it uses the forum_parents field.
I usually create my list first and then add the bbcode around it. That's similar to how I do it. Here's what I'm thinking: If there is text selected in the message box when the user hits the list button, it could convert the selection into a list, one item for every new line. Item 1 Item 2 Item 3 S...