I have to create as many languages as I want, but I don't want to show them in the list on the frontend as it will look awkward. I am trying to hide the language from the hide language option, it is hiding even from the frontend and backend. What is the solution to this, it should not look in the frontend and work properly when I search from the URL.
/*Hide menu Language Switcher*/
.wpml-ls-menu-item {
visibility: hidden !important;
}
/*Hide footer Language Switcher*/
.wpml-ls {
visibility: hidden !important;
}
This code is hiding all the languages from the front end, What I want to do is to show some languages on front end and hide other languages. Check out the image for a better understanding. In the image, I want to hide, Singapore, Ireland, Thailand, and other languages that I will add in future.
/*Hide menu Language Switcher*/
.wpml-ls-menu-item {
visibility: hidden !important;
}
/*Hide footer Language Switcher*/
.wpml-ls {
visibility: hidden !important;
}
This code is hiding all the languages from the front end, What I want to do is to show some languages on front end and hide other languages. Check out the image for a better understanding. In the image, I want to hide, Singapore, Ireland, Thailand, and other languages that I will add in future.