Why not implement a chat hide feature?

Discussions about BGA (all languages)
Forum rules
Warning: challenging a moderation in Forum = 10 days ban
More info & details about how to challenge a moderation: viewtopic.php?p=119756
User avatar
Jellby
Posts: 3550
Joined: 31 December 2013, 12:22

Re: Why not implement a chat hide feature?

Post by Jellby »

You still see the new messages as they appear, as well as a (sometimes distracting) "Whatsitsname is writing something..." or whatever.
User avatar
wdspider
Posts: 56
Joined: 19 July 2024, 05:58

Re: Why not implement a chat hide feature?

Post by wdspider »

Jellby wrote: 05 January 2025, 15:12 You still see the new messages as they appear, as well as a (sometimes distracting) "Whatsitsname is writing something..." or whatever.
There's a `Notify chat messages` checkbox at the bottom of the general messages that I believe removes the new messages popups. This updated css seems to do it as well:

Code: Select all

#chatbar,
#chatwindowpreview_general {
  display: none;
}
Not sure about the "Someone is writing something..." as I can't seem to recall seeing it.
User avatar
Jellby
Posts: 3550
Joined: 31 December 2013, 12:22

Re: Why not implement a chat hide feature?

Post by Jellby »

My reply was meant for the remark that people can just not open the chat. As for using CSS to hide it, I have assigned a hotkey to hide the chat as soon as it starts to get annoying (which it very often does in Habani).
User avatar
Tof63
Posts: 582
Joined: 24 March 2020, 20:25

Re: Why not implement a chat hide feature?

Post by Tof63 »

You can mute players with this extension: https://en.doc.boardgamearena.com/ChromeExtension
User avatar
pastor8226
Posts: 16
Joined: 24 November 2020, 00:38

Re: Why not implement a chat hide feature?

Post by pastor8226 »

wdspider wrote: 05 January 2025, 14:31 For those of you who want to hide chat, this little bit of css added under your advanced profile settings should do the trick:

Code: Select all

#chatbar {
  display: none;
}
It's a bit heavy handed as it removes all chat and requires you to remove the css to see chat again. However, it should work perfect if that's what you desire.

This works but it takes away the game log as well.
Is there any way to get rid of chat but keep the game log?
I use my phone the majority of the time. I know I can rotate my phone to get the log that way but prefer to use the game log "bubble"
User avatar
wdspider
Posts: 56
Joined: 19 July 2024, 05:58

Re: Why not implement a chat hide feature?

Post by wdspider »

pastor8226 wrote: 26 January 2025, 07:09
wdspider wrote: 05 January 2025, 14:31 For those of you who want to hide chat, this little bit of css added under your advanced profile settings should do the trick:

Code: Select all

#chatbar {
  display: none;
}
It's a bit heavy handed as it removes all chat and requires you to remove the css to see chat again. However, it should work perfect if that's what you desire.

This works but it takes away the game log as well.
Is there any way to get rid of chat but keep the game log?
I use my phone the majority of the time. I know I can rotate my phone to get the log that way but prefer to use the game log "bubble"

Code: Select all

body.desktop_version {
  #chatbar,
  #chatwindowpreview_general {
    display: none;
  }
}

body.mobile_version {
  .chatwindowtype_table {
    display: none;
  }
}
This seems to work on desktop and mobile without hiding the game log button.
Post Reply

Return to “Discussions”