Ignore Feature till xf 1.1

  • Thread starter Thread starter ragtek
  • Start date Start date
R

ragtek

Guest
If anybody wants to hide a users post, you can use greasemonkey till xf 1.1 gets released.

Create a gm script, copy this content
Code:
// ==UserScript==
// @name          ignorexxxx
// @namespace      xenforo
// @include        http://xenforo.com/community*
// ==/UserScript==

var listItems = document.getElementsByTagName('li');
for (var i = 0; i < listItems.length; i++) {
    if (listItems[i].hasAttribute('data-author') && listItems[i].getAttribute('data-author') == 'xxxx') {
        listItems[i].style.display = 'none';
    }
}
and replace xxxx with the username you want to ignore;)
Save it and enjoy the silence;)
 
Can anyone tell me what the first post says?

ragtek's on my ignore list...

Just in case the Brocyclopedia XenForoca is serious and not kidding...

If anybody wants to hide a users post, you can use greasemonkey till xf 1.1 gets released.

Create a gm script, copy this content
Code:
// ==UserScript==
// @name          ignorexxxx
// @namespace      xenforo
// @include        http://xenforo.com/community*
// ==/UserScript==

var listItems = document.getElementsByTagName('li');
for (var i = 0; i < listItems.length; i++) {
    if (listItems[i].hasAttribute('data-author') && listItems[i].getAttribute('data-author') == 'xxxx') {
        listItems[i].style.display = 'none';
    }
}
and replace xxxx with the username you want to ignore;)
Save it and enjoy the silence;)
 
Top Bottom