Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord

    How can I remove all posts saying "This topic is deleted!" ?

    General Discussion
    4
    6
    1652
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • E
      E3V3A last edited by

      I just joined this forum and I’m met with hundreds of topics, saying:
      “This topic is deleted!”. Not cool at all.

      1. Why don’t you moderators delete these permanently?
      2. How can I delete these from my view?
      1 Reply Last reply Reply Quote 0
      • Mykle1
        Mykle1 Project Sponsor Module Developer last edited by

        I’m just an old dude hanging out here, not a moderator or anything important like that, but I don’t believe there is any way for you to delete those from view. Historically, once a topic is deleted there is a period of time where you will see that message. However, there does seem to be a point in which they are purged or purge themselves. Also, there really only seems to be one admin/moderator actively dealing with the spam issue and he is a working, family man, father, etc and does the best he can in the short time that he is able to be here. This issue has been discussed before. Hopefully, the powers that be will come up with a better, long term solution.

        Peace!

        E 1 Reply Last reply Reply Quote 3
        • yawns
          yawns Moderator last edited by

          1. Short story: We have alot of spam. However I cannot completely delete threads, only admins can do that.
          2. I use unread or recent view, which hides deleted threads
          Mykle1 1 Reply Last reply Reply Quote 0
          • Mykle1
            Mykle1 Project Sponsor Module Developer @yawns last edited by

            @yawns said in How can I remove all posts saying “This topic is deleted!” ?:

            I use unread or recent view, which hides deleted threads

            Doh! Where the heck is that option? (Feeling really stupid)

            1 Reply Last reply Reply Quote 1
            • D
              doubleT Module Developer last edited by doubleT

              Not a direct solution, but if you’re really annoyed, there are browser addons that run individual JavaScript snippets for you where you can say, for example:

              var checkHeadExist = setInterval(function() {
                  if (document.querySelector('head')) {
                      clearInterval(checkHeadExist);
                      styleElem = document.createElement('style');
                      styleElem.setAttribute('id', 'counter-styles');
                      styleElem.type = 'text/css';
                      styleElem.appendChild(document.createTextNode('.deleted {display: none;}'));
                      document.querySelector('head').appendChild(styleElem);
                  }
              }, 100); // check every 100ms
              

              Try it out, Chrome has a snippet tool in the developer tools, in Firefox it’s called “JS environment” if I’m not mistaken. But these only work until you reload (in Chrome, you can save them). There are addons that automatically execute them for you.

              1 Reply Last reply Reply Quote 0
              • E
                E3V3A @Mykle1 last edited by

                @Mykle1 Thanks for your quick response.

                1 Reply Last reply Reply Quote 0
                • 1 / 1
                • First post
                  Last post
                Enjoying MagicMirror? Please consider a donation!
                MagicMirror created by Michael Teeuw.
                Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
                This forum is using NodeBB as its core | Contributors
                Contact | Privacy Policy