Can't add someone to my foes list
- Citroen
- SpamTeam
- Posts: 8077
- Joined: March 16th, 2006, 3:28 pm
- Location: A small cave in deepest darkest Basingstoke, UK
Can't add someone to my foes list
When I tried to add a user to my "foes list" it barfed with
You cannot add administrators and moderators to your foes list.
Can we fix that? There's someone's noise that I'm not interested in so I'd like to hide his/her posts and my Greasemonkey script doesn't work on phpBB3. I wonder if the user I'm trying to hide is assigned to the wrong group.
You cannot add administrators and moderators to your foes list.
Can we fix that? There's someone's noise that I'm not interested in so I'd like to hide his/her posts and my Greasemonkey script doesn't work on phpBB3. I wonder if the user I'm trying to hide is assigned to the wrong group.
- David Hart
- Paddler
- Posts: 46
- Joined: March 30th, 2006, 5:05 am
Re: Can't add someone to my foes list
OK; solved the issue with some user groups. This should work fine now.
--David
--David
David Hart
-
- 2k Poster
- Posts: 256
- Joined: April 2nd, 2006, 3:53 am
- Location: Scotland
Re: Can't add someone to my foes list
Here's the Greasemonkey fix for the new skin:
Code: Select all
// ==UserScript==
// @name Hydrangea
// @description Hide ranger posts
// @namespace http://www.machars.net
// @include http://www.c2forum.com/viewtopic.php*
// ==/UserScript==
var paras = document.getElementsByTagName("p");
var parent = null;
for (var i=0;i<paras.length;i++)
{
if (paras[i].className == "author" && paras[i].innerHTML.search(/ranger/) > -1)
{
parent = paras[i].parentNode.parentNode.parentNode;
parent.style.display = "none";
}
}
Roy Walter
M55 | 185cm | 90kg | Journeyman Erger
PBs (2004): 6:38 (2K) | 5:22.9 (mile) | 17:39.6 (5K) | 8323 (30 mins) | 36:52 (10K) | 1:22:03 (HM '05)
M55 | 185cm | 90kg | Journeyman Erger
PBs (2004): 6:38 (2K) | 5:22.9 (mile) | 17:39.6 (5K) | 8323 (30 mins) | 36:52 (10K) | 1:22:03 (HM '05)
- Citroen
- SpamTeam
- Posts: 8077
- Joined: March 16th, 2006, 3:28 pm
- Location: A small cave in deepest darkest Basingstoke, UK
Re: Can't add someone to my foes list
You probably want to change that togooseflight wrote:Here's the Greasemonkey fix for the new skin:
Code: Select all
// @include http://www.c2forum.com/viewtopic.php*
Code: Select all
// @include http://*c2forum.com/viewtopic.php*
-
- 2k Poster
- Posts: 256
- Joined: April 2nd, 2006, 3:53 am
- Location: Scotland
Re: Can't add someone to my foes list
Makes no difference. Dropping the www still puts you back at the www. host header. But no harm either way.Citroen wrote:You probably want to change that togooseflight wrote:Here's the Greasemonkey fix for the new skin:
Code: Select all
// @include http://www.c2forum.com/viewtopic.php*
for the folks who've ditched the www'sCode: Select all
// @include http://*c2forum.com/viewtopic.php*
Roy Walter
M55 | 185cm | 90kg | Journeyman Erger
PBs (2004): 6:38 (2K) | 5:22.9 (mile) | 17:39.6 (5K) | 8323 (30 mins) | 36:52 (10K) | 1:22:03 (HM '05)
M55 | 185cm | 90kg | Journeyman Erger
PBs (2004): 6:38 (2K) | 5:22.9 (mile) | 17:39.6 (5K) | 8323 (30 mins) | 36:52 (10K) | 1:22:03 (HM '05)