# האם ניתן להסיר את הקישור/כפתור "My Threads"?

**URL:** https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483
**Category:** Support
**Tags:** chat
**Created:** [12 בספטמבר,‏ 2025,‏ 11:32pm UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483 "2025-09-12T23:32:20Z")
**Posts on this page:** 13
**Page:** 1

<div class="post-metadata">

### Author: ![Jonathan5](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jonathan5/32/197134_2.png) [@Jonathan5](https://meta.discourse.org/u/Jonathan5)
#### Post date: [12 בספטמבר,‏ 2025,‏ 11:32pm UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/1 "2025-09-12T23:32:20Z")

</div>

אני רואה שהסרתם את זה כאן! תודה.

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [12 בספטמבר,‏ 2025,‏ 11:52pm UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/2 "2025-09-12T23:52:18Z")

</div>

Are you referring to the chat? I have it:

 ![Screenshot_20250913_075005_Chrome](https://global.discourse-cdn.com/meta/original/4X/b/4/9/b49bde5b2ff8c8fbf1643eb33c93730005ea0482.jpeg)

---

<div class="post-metadata">

### Author: ![Jonathan5](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jonathan5/32/197134_2.png) [@Jonathan5](https://meta.discourse.org/u/Jonathan5)
#### Post date: [13 בספטמבר,‏ 2025,‏ 1:05am UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/3 "2025-09-13T01:05:37Z")

</div>

כן, זה מה שהייתי רוצה להיפטר ממנו בפורום שלי.

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [13 בספטמבר,‏ 2025,‏ 1:39am UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/4 "2025-09-13T01:39:06Z")

</div>

You can hide the button with CSS, but to disable chat thread functionality, you’ll have to remove it in channels and DMs (also maybe see [this topic](https://meta.discourse.org/t/disable-chat-threads-in-dms/334040)?).

Also, this may be why you don’t see it here on Meta:

> [@Can we hide # My threads?](https://meta.discourse.org/t/can-we-hide-my-threads/288620/8):
>
> merged an update that will hide **My Threads** for community members who don’t belong to any chat channels with threads enabled

---

<div class="post-metadata">

### Author: ![Jonathan5](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jonathan5/32/197134_2.png) [@Jonathan5](https://meta.discourse.org/u/Jonathan5)
#### Post date: [13 בספטמבר,‏ 2025,‏ 8:20am UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/5 "2025-09-13T08:20:13Z")

</div>

> [@NateDhaliwal](#):
>
> to disable chat thread functionality, you’ll have to remove it in channels and DMs

Thanks. How do I do that? I’ve looked and can’t find the setting.

---

<div class="post-metadata">

### Author: ![Jonathan5](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jonathan5/32/197134_2.png) [@Jonathan5](https://meta.discourse.org/u/Jonathan5)
#### Post date: [13 בספטמבר,‏ 2025,‏ 8:25am UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/6 "2025-09-13T08:25:10Z")

</div>

מצאתי! כדי להגיע להגדרות ערוץ הצ’אט, עליך ללחוץ על **שם** הערוץ! שרשורים כובו בכל הערוצים מבוססי-קטגוריות.

כיצד אוכל להיפטר מהקישור “השרשורים שלי”?

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [13 בספטמבר,‏ 2025,‏ 9:52am UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/7 "2025-09-13T09:52:46Z")

</div>

האם יש צ’אט שבו השחלת הודעות עדיין מופעלת? האם בדקת את כל צ’אטי ההודעות הפרטיות?

באפשרותך להשתמש בשאילתת חוקר הנתונים הזו כדי למצוא את כל הצ’אטים שלך שבהם השחלת הודעות מופעלת.

```sqlx
-- [params]
-- user_id :user_id 

WITH memberships AS (
  SELECT
    uccm.user_id,
    cc.id AS chat_channel_id,
    cc.type AS channel_type,
    cc.name AS channel_name,
    cc.description,
    cc.threading_enabled
  FROM
    user_chat_channel_memberships uccm
  JOIN
    chat_channels cc ON uccm.chat_channel_id = cc.id
  WHERE
    uccm.user_id = :user_id
    AND cc.threading_enabled = TRUE
)
SELECT
  m.chat_channel_id,
  COALESCE(
    NULLIF(m.channel_name, ''),
    (
      SELECT string_agg(u.username, ', ')
      FROM user_chat_channel_memberships uccm2
      JOIN users u ON uccm2.user_id = u.id
      WHERE uccm2.chat_channel_id = m.chat_channel_id
        AND uccm2.user_id <> m.user_id
    )
  ) AS sidebar_name,
   m.channel_type,
  ('/chat/c/-/' || m.chat_channel_id) AS chat_url
FROM memberships m
ORDER BY m.channel_type, sidebar_name

```

---

<div class="post-metadata">

### Author: ![Jonathan5](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jonathan5/32/197134_2.png) [@Jonathan5](https://meta.discourse.org/u/Jonathan5)
#### Post date: [13 בספטמבר,‏ 2025,‏ 10:13am UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/8 "2025-09-13T10:13:49Z")

</div>

Pasting into [Data Explorer](https://meta.discourse.org/t/32566?silent=true) does not work on my iPhone but I’ll try on the computer later. Thanks.

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [13 בספטמבר,‏ 2025,‏ 10:20am UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/9 "2025-09-13T10:20:20Z")

</div>

בעיקרון, כל הודעות פרטיות עם שרשורים. אם אתה רק רוצה להסתיר את הכפתור, ה-CSS הזה יעשה את העבודה, למרות שעדיין יהיה לך שרשור:

```css
button#c-footer-threads.c-footer__item {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![Jonathan5](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jonathan5/32/197134_2.png) [@Jonathan5](https://meta.discourse.org/u/Jonathan5)
#### Post date: [13 בספטמבר,‏ 2025,‏ 12:54pm UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/10 "2025-09-13T12:54:35Z")

</div>

השאילתה שלך מצאה צ’אט אחד בין משתמשים שהופעל בו שרשור. אם הייתי מבין שההגדרות עבור צ’אטים בין משתמשים נמצאות בלחיצה על הכותרת, יכולתי למצוא זאת בקלות. זה באמת לא אינטואיטיבי בכלל. כיביתי את השרשור. כעת, הקישור “השרשורים שלי” נעדר (עבורי כעת).

אני מאמין מקריאת נושאים כאן ששרשור מופעל כברירת מחדל להודעות ישירות. האם זה עדיין המצב, והאם יש או תהיה אפשרות להפוך אותו לכבוי כברירת מחדל? תודה.

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [13 בספטמבר,‏ 2025,‏ 1:12pm UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/11 "2025-09-13T13:12:24Z")

</div>

> [@Jonathan5](#):
>
> will there be an option to make it off by default

There is a quite popular feature request

> [@Disable chat threads in DM's](https://meta.discourse.org/t/disable-chat-threads-in-dms/334040):
>
> When I reply to a particular message, Discourse automatically makes this a thread. We can disable this per channel/chat basis.. How can we stop this behaviour from happening in DM’s by default (or completely)? This is very aggressive and actually making simple DM’s very complex to follow.

You can support it by voting on it, liking the OP, and describing your use case in a reply

---

<div class="post-metadata">

### Author: ![Jonathan5](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jonathan5/32/197134_2.png) [@Jonathan5](https://meta.discourse.org/u/Jonathan5)
#### Post date: [13 בספטמבר,‏ 2025,‏ 3:33pm UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/12 "2025-09-13T15:33:29Z")

</div>

בוצע! הוספת תווים נוספים.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [13 באוקטובר,‏ 2025,‏ 3:34pm UTC](https://meta.discourse.org/t/is-it-possible-to-get-rid-of-the-my-threads-link-button/382483/13 "2025-10-13T15:34:03Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
