Removing the"Suggested" List in Teams Chat

Anonymous
2023-12-09T15:49:06+00:00

How do I remove the "Suggested" list from the new Teams? This is both annoying and foolish.

Microsoft Teams | Microsoft Teams for business | Chats | Other

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

57 answers

Sort by: Most helpful
  1. Anonymous
    2024-06-25T20:47:27+00:00

    Yes, this won't work.

    Others in this thread have pointed it out.

    My fix will work on browsers.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2024-06-25T20:40:24+00:00

    Hi Adebayo, followed your steps and Suggested continues to appear in Teams chat.

    Gisele

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2024-06-25T17:00:28+00:00

    My fix is just for BROWSERS. It works with Chrome and Firefox. I haven't tested anything else.

    Too bad about the app — which I can't fix.
    (since I'm using Linux, they don't have a desktop app for me!)

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2024-06-25T16:50:43+00:00

    Here's how to fix it!

    Download the extension "Stylus". Make sure that it is not "Stylish" - which has security flaws and is deprecated.

    Stylus lets you change the CSS of your page. Create a stylus entry for the page and add the content below:

    @-moz-document url-prefix("https://teams.microsoft.com/v2/") {
        /* Remove "Suggested Chats" from the left panel of Microsoft Teams Chat */
        #SUGGESTED, #suggested-project-group-chat{
            display:none;
        }
        [id^="chat-list-suggested-contact"] {
            visibility:hidden;        
        }
        [data-testid^="chat-invite-button"] {
        display:none;
        }
    }
    

    Note that periodically MS changes the names of their CSS ids so this may stop working in a year.
    Also, you can decide if you want "visibility:hidden" or "display:none"

    This is a web extension. Does it fix the Teams app?

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2024-06-25T15:27:04+00:00

    Here's how to fix it!

    Download the extension "Stylus". Make sure that it is not "Stylish" - which has security flaws and is deprecated.

    Stylus lets you change the CSS of your page. Create a stylus entry for the page and add the content below:

    @-moz-document url-prefix("https://teams.microsoft.com/v2/") {
        /* Remove "Suggested Chats" from the left panel of Microsoft Teams Chat */
        #SUGGESTED, #suggested-project-group-chat{
            display:none;
        }
        [id^="chat-list-suggested-contact"] {
            visibility:hidden;        
        }
        [data-testid^="chat-invite-button"] {
        display:none;
        }
    }
    

    Note that periodically MS changes the names of their CSS ids so this may stop working in a year.
    Also, you can decide if you want "visibility:hidden" or "display:none"

    Was this answer helpful?

    0 comments No comments