Additional chat-related features and issues within Microsoft Teams for business
Yes, this won't work.
Others in this thread have pointed it out.
My fix will work on browsers.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How do I remove the "Suggested" list from the new Teams? This is both annoying and foolish.
Additional chat-related features and issues within Microsoft Teams for business
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.
Yes, this won't work.
Others in this thread have pointed it out.
My fix will work on browsers.
Hi Adebayo, followed your steps and Suggested continues to appear in Teams chat.
Gisele
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!)
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?
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"