Twiglard, which mod is this?I reverted the change to the nav menu. If you want real watched threads filtering, go nag the site's owners about the 30$ addon until they give in.That must be it for me. You need a way to distinguish watched threads from watched forums.
DarkUnderlord Taluntain Have I donated enough potato over the years to cover this nagging request?
DarkUnderlord, https://xenforo.com/community/resources/watched-threads-filtering.6876/@Twiglard, which mod is this?
Are ratings gone or it's just me?
Yes, problem solved.Are the ratings sorted properly now?
A list of zero items is inherently sorted, yes.Are the ratings sorted properly now?
--- Listener.php.old 2022-08-06 18:39:14.693337566 +0200
+++ Listener.php 2022-08-06 20:14:18.912356196 +0200
@@ -443,7 +443,7 @@
{
$reactionCategories = new ArrayCollection([]);
}
- else if ($sort)
+ else if (true)
{
$sortedRatingsCounts = [];
/** @var Entity|IRatableEntity $entity */
@@ -471,6 +471,20 @@
}
}
+ $list = [];
+ foreach ($reactionCategories as $id => $category)
+ foreach ($category->Reactions as $reaction)
+ $list[$reaction->reaction_id] = $reaction;
+ \usort($list, function($a, $b) use ($sortedRatingsCounts) {
+ $B = $sortedRatingsCounts[$b->reaction_id] ?? 0;
+ $A = $sortedRatingsCounts[$a->reaction_id] ?? 0;
+ $ret = $B - $A;
+ if ($ret == 0)
+ $ret = $a->reaction_id - $b->reaction_id;
+ return $ret;
+ });
+ $arguments['reactionsWithoutCategories'] = $list;
+
$sortedRatings = [];
if ($sortedRatingsCounts)
{
<xf:foreach loop="$displayReactionCategories" key="$reactionCategoryId" value="$reactionCategory">
<xf:foreach loop="$reactionCategory.Reactions" key="$reactionId" value="$reaction">
<xf:foreach loop="$reactionsWithoutCategories" key="$reactionId" value="$reaction">
I'm seeing the ratings properly though, like here <https://rpgcodex.net/forums/threads/hostile-takeover-of-shoutbox-by-substance-abusing-losers.143789/>.A list of zero items is inherently sorted, yes.Are the ratings sorted properly now?
Refresh the page. Is that still the case?Ratings are fucking gone. You cannot see them at the bottom of the post.
How about now?
Short answer: probably Jenkem, long answer: it's still there you just have to setup What's New > New Posts, https://rpgcodex.net/forums/whats-new/posts/, to default to that behavior by clicking the filter menu on the right and click show watched and unread boxes then saving that as default behavior then whenever you go to new posts you'll have that back.For a short while, the watched thread list was changed to function like the older version of the site. This is no longer the case. What happened?
[img]link-to-image[/img]
It malfunctions for people who watch forums themselves, not just individual threads. You can still click the dropdown of 'Watched' and go to 'Unread watched threads' to access it.For a short while, the watched thread list was changed to function like the older version of the site. This is no longer the case. What happened?
Yes, I saw that and it functions like I want it to.It malfunctions for people who watch forums themselves, not just individual threads. You can still click the dropdown of 'Watched' and go to 'Unread watched threads' to access it.For a short while, the watched thread list was changed to function like the older version of the site. This is no longer the case. What happened?
Taluntain - you want to buy this one and add it to our collection?DarkUnderlord, https://xenforo.com/community/resources/watched-threads-filtering.6876/@Twiglard, which mod is this?