If you want to hide posts from an admin...

Discussion in 'The Help Desk' started by mburtonk, Nov 12, 2021.

  1. mburtonk

    mburtonk mburtonkulous

    Joined:
    Dec 6, 2004
    Messages:
    10,508
    Location:
    Minnesnowta
    Ratings:
    +7,626
    ...because board software won't allow you to ignore them, there's a Greasemonkey script for that.

    Replace USER below with the username of whoever you want to skip posts by. This will not remove quoted posts; that exercise is left for the reader.

    // ==UserScript==
    // @name _Ignore_USER
    // @include https://wordforge.net/*
    // @include http://wordforge.net/*
    // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
    // @grant GM_addStyle
    // ==/UserScript==
    //- The @grant directive is needed to restore the proper sandbox.

    /*--- Use the jQuery contains selector to find content to remove.
    Beware that not all whitespace is as it appears.
    */

    // https://stackoverflow.com/questions...ide-elements-with-specific-data-test-id-value
    let elements = document.querySelectorAll('li[data-author=USER]');


    for (let element of elements) {
    element.style.display = "none";
    }


    //-- Or use badDivs.hide(); to just hide the content.
    • popcorn popcorn x 2
    • Funny Funny x 1
  2. Fisherman's Worf

    Fisherman's Worf I am the Seaman, I am the Walrus, Qu-Qu-Qapla'!

    Joined:
    Apr 3, 2004
    Messages:
    30,587
    Ratings:
    +42,977
    All of my posts are hidden from the admins. I'm ban proof.

    Watch this:

    Fuck the admins!! :finger:

    USER WAS BANNED FOR THIS POST
    • Funny Funny x 1
  3. Bickendan

    Bickendan Custom Title Administrator Faceless Mook Writer

    Joined:
    May 7, 2010
    Messages:
    23,946
    Ratings:
    +28,504
    Oops. Was aiming for Packard.
    • Funny Funny x 2
    • Agree Agree x 1
  4. mburtonk

    mburtonk mburtonkulous

    Joined:
    Dec 6, 2004
    Messages:
    10,508
    Location:
    Minnesnowta
    Ratings:
    +7,626
    You're right, the phrasing on that was not good.