Page 2 of 2

Re: Why not implement a chat hide feature?

Posted: 05 January 2025, 15:12
by Jellby
You still see the new messages as they appear, as well as a (sometimes distracting) "Whatsitsname is writing something..." or whatever.

Re: Why not implement a chat hide feature?

Posted: 05 January 2025, 16:42
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.

Re: Why not implement a chat hide feature?

Posted: 05 January 2025, 17:53
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).

Re: Why not implement a chat hide feature?

Posted: 05 January 2025, 20:45
by Tof63
You can mute players with this extension: https://en.doc.boardgamearena.com/ChromeExtension

Re: Why not implement a chat hide feature?

Posted: 26 January 2025, 07:09
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"

Re: Why not implement a chat hide feature?

Posted: 26 January 2025, 15:38
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.