Is het mogelijk om de link/knop "Mijn Threads" te verwijderen?

Ik zie dat je het hier hebt verwijderd! Bedankt.

Are you referring to the chat? I have it:

Ja, dat wil ik graag van mijn forum af.

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?).

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

1 like

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

Gevonden! Om bij de instellingen van het chatkanaal te komen, moet je op de naam van het kanaal klikken. Threading is uitgeschakeld op alle categorie-gebaseerde kanalen.

Hoe kan ik de link “Mijn Threads” verwijderen?

1 like

Is there any chat where threading is still enabled? Did you check all DM chats?

You can use this data explorer query to find all your chats where threading is enabled.

-- [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
3 likes

Pasting into Data Explorer does not work on my iPhone but I’ll try on the computer later. Thanks.

In principe, alle DM’s met threads. Als je de knop alleen wilt verbergen, zou deze CSS volstaan, hoewel je nog steeds threading hebt:

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

Uw zoekopdracht heeft één gebruikers-naar-gebruiker-chat gevonden waarvoor threading was ingeschakeld. Als ik had beseft dat de instellingen voor gebruikers-naar-gebruiker-chats te vinden waren door op de kop te klikken, had ik het gemakkelijk kunnen vinden. Dat is helemaal niet intuïtief. Ik heb threading uitgeschakeld. Nu ontbreekt de link “Mijn threads” (voor mij nu).

Ik geloof, door hier topics te lezen, dat threading standaard is ingeschakeld voor directe berichten. Is dat nog steeds het geval, en is er of komt er een optie om het standaard uit te schakelen? Dank u.

2 likes

There is a quite popular feature request

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

3 likes

Klaar! Nog wat extra tekens toegevoegd.

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