Best Answer

Removing language selection dropdown?

  • 30 May 2023
  • 3 replies
  • 45 views

Userlevel 3
Badge +2

When someone is in our sign-in screen, they see a dropdown in the upper right that says “English” and has an arrow, hinting that they could click to change the language of the interface. However, we only support our content in English and have no other languages. This function ends up being useless for us, but can “trick” the user into thinking there are more languages available. Is there a way to remove this little box? Thank you in advance for reading!

What the box looks like we’d like to remove

 

icon

Best answer by lrnlab 30 May 2023, 21:11

View original

3 replies

Userlevel 7
Badge +7

I assume you have you turned OFF all other languages? Had a look at mine and it’s the same with only English language as active...maybe some CSS can hide that?

Userlevel 3
Badge +2

@lrnlab Yes, all other languages are turned off. I appreciate the insight, I figured this was only something that could be solved with CSS - thank you!

Userlevel 7
Badge +3

Here’s the CSS to hide it if you are interested:

  .dcb-ui-language-selector {
display: none;
}

I havn’t checked around to see if it impacts other areas, and it does leave an outer container still that I did not see a unique enough method to remove it, but stays subtle.

Reply