Open Side Menu Go to the Top
Register
How do I ignore someone? How do I ignore someone?

07-14-2012 , 08:50 PM
Quote:
Originally Posted by soah
Someone created a browser plug-in or something which does this. It was posted in the software forum a couple years ago, I think. I don't remember which browser it was for, or any other details which would help in searching for it.
If you're talking about FfvB, it is defunct.
How do I ignore someone? Quote
07-15-2012 , 01:32 AM
This message is hidden because that's why.

Spoiler:
Drunk, that's why
How do I ignore someone? Quote
07-15-2012 , 03:10 AM
An option where the posts completly disapear would be great too

Im too tempted to look the post anyway otherwise
How do I ignore someone? Quote
07-16-2012 , 04:40 PM
Quote:
Originally Posted by piet_evil
a big part of 2+2 became unreadable in the last 1- 2 years.
only ******ed kids and trolls everywhere in nvg, bbv(obv) and even in the theory and strat forums.
90% of that bull**** comes from posters with 2011/2012 reg date.
i know that many of these fools get banned but they keep making account after account.
so my question is if it is possible to implement a ignore function for all posters which registered after a set date, lets say jan 2011 for example ?

what do other non ******ed members think about such a function ?
http://www.youtube.com/watch?v=9_aAMEHyPX8#t=02m52s
How do I ignore someone? Quote
07-22-2012 , 10:19 AM
New Forum Feature Request, "Add UserName to Ignore List" should be an option from the dropdown menu when clicking someone's name next to their post (either just below, or in place of "Add UserName to Contacts"

Currently, if I wanted to ignore the person who posted above me i have to:
1. Click "TomCollins"
2. On drop down, click "View Public Profile"
3. Load new page, click "User Lists"
4. On drop down, click, "Add to Ignore List"
5. Load new page, click "Yes" to confirm.

If someone is an awful poster, I should be able to ignore them from a drop down menu right next to their awful post. It just adds insult to injury that after I waste my time reading an awful post I'm forced to waste extra time to go out of my way to ignore them. This is slow and cumbersome, it should be fast and simple.

(since this feature already exists for 'add to contacts', this would be simple-ish to implement right?)
How do I ignore someone? Quote
07-24-2012 , 12:41 AM
OH MY GAWD LIFE IS SO HARD
How do I ignore someone? Quote
07-24-2012 , 12:50 AM
Quote:
Originally Posted by AlligatorBloodFTW
OH MY GAWD LIFE IS SO HARD


I find that just not reading the post works pretty well and requires no clicks on my part. Even easier. But admittedly I'm so old that I find just doing simple math is faster and easier in my head than using a calculator, too.

Just ignore me.
How do I ignore someone? Quote
07-24-2012 , 05:38 AM
I'd like an "Ignore - no, really' option so that you could completely ignore trolls rather than having their posts cluttering up threads with "You cannot see this message ..." well, duh, I can see the message is there, I just can't see its contents.
How do I ignore someone? Quote
07-24-2012 , 07:16 AM
I would like 100k and a new truck.

maybe handjobs with my cornflakes too. preferably from a chic. preferably.
How do I ignore someone? Quote
07-24-2012 , 03:35 PM
Quote:
Originally Posted by Wiki
I'd like an "Ignore - no, really' option so that you could completely ignore trolls rather than having their posts cluttering up threads with "You cannot see this message ..." well, duh, I can see the message is there, I just can't see its contents.
+1
How do I ignore someone? Quote
03-26-2014 , 09:33 PM
I want them to be IGNORED.

I don't want to see their name, the fact that they posted, or the option to view their post.

Please fix this Mr. Sklansky.
How do I ignore someone? Quote
03-26-2014 , 09:37 PM
Quote:
Originally Posted by KruZe
I want them to be IGNORED.

I don't want to see their name, the fact that they posted, or the option to view their post.

Please fix this Mr. Sklansky.
He's ignoring you.

Last edited by Doc T River; 03-26-2014 at 09:37 PM. Reason: and his works. LOL.
How do I ignore someone? Quote
03-26-2014 , 09:38 PM
How do I ignore someone? Quote
03-26-2014 , 09:52 PM
I think you should just hunt them down and ki** them
.

Last edited by Mike Haven; 03-27-2014 at 07:37 PM.
How do I ignore someone? Quote
03-26-2014 , 09:56 PM
RIP ffvb
How do I ignore someone? Quote
03-27-2014 , 08:25 PM
Quote:
Originally Posted by herbertstemple
I think you should just hunt them down and ki** them
.
Nice edit MH.

This begs the question where should OP ki** them?
How do I ignore someone? Quote
03-28-2014 , 06:42 AM
Here's an ignore script I use, only with the "User is ignored" bit removed.

Code:
// ==UserScript==
// @name           2+2 full ignore
// @include        http://forumserver.twoplustwo.com/*
// ==/UserScript==

var query = "//a[@class='bigusername']";
var snapshot = document.evaluate(query,
	                          document,
	                          null,
	                          XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
	                          null);
var ignores = ['someuser', 'another user', 'still another user'];
var i;
for(i = 0; i < snapshot.snapshotLength; ++i) {
	var node = snapshot.snapshotItem(i);
	try {
		var name = '' + node.textContent;
		if(ignores.indexOf(name) > -1) {
			var userText = node.parentNode.innerHTML;
			node.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.innerHTML = " ";
		}
	}
	catch(e) {
	}
}
// ==/UserScript==
How do I ignore someone? Quote
03-28-2014 , 01:39 PM
Also hoping that one of the Sklansky brothers fixes this
How do I ignore someone? Quote
03-28-2014 , 03:16 PM
Quote:
Originally Posted by Neil S
Here's an ignore script I use, only with the "User is ignored" bit removed.

...
Can you explain how/where you add a username to the code?

Thanks...
How do I ignore someone? Quote
03-28-2014 , 04:25 PM
I don't always ignore people but when I do I want them to be gone!. I love when I have people ignored others copy and paste their comments, bit of a glitch in the ignore I think could be fixed.
How do I ignore someone? Quote
03-28-2014 , 04:34 PM
Quote:
Originally Posted by sba9630
Can you explain how/where you add a username to the code?

Thanks...
See the "var ignores" part?

Change that list to be what you want. If you had poor taste you could do this

var ignores = ['Neil S', 'Bobo Fett', 'Professionalpoker'];
How do I ignore someone? Quote
03-28-2014 , 05:03 PM
Quote:
Originally Posted by Neil S
See the "var ignores" part?

Change that list to be what you want. If you had poor taste you could do this

var ignores = ['Neil S', 'Bobo Fett', 'Professionalpoker'];
I figured out my problem, you have to take users OFF your ignore list for it to work.

It completely removes them from a thread (almost).

It removes their posts, even the "This message is hidden because X is on your ignore list." phrase.

But they still show in the forum list if they start a thread and they also show up if they're quoted in a reply.

Thanks for your help.
How do I ignore someone? Quote
03-28-2014 , 05:44 PM
You can use the patented dkgo method for threads they start.
How do I ignore someone? Quote
03-28-2014 , 06:17 PM
Quote:
Originally Posted by ZeckoRiver
I don't always ignore people but when I do I want them to be gone!. I love when I have people ignored others copy and paste their comments, bit of a glitch in the ignore I think could be fixed.
Hi ZR !!
How do I ignore someone? Quote
03-28-2014 , 06:20 PM
Quote:
Originally Posted by obviously.bogus
Quote:
Originally Posted by ZeckoRiver
I don't always ignore people but when I do I want them to be gone!. I love when I have people ignored others copy and paste their comments, bit of a glitch in the ignore I think could be fixed.
Hi ZR !!
When someone is ignored, their gimmicks should also be ignored ...

Please fix this Mr. Sklansky.
How do I ignore someone? Quote

      
m