Saltar al contenido Saltar a la barra lateral

Este tema contiene 0 respuestas, tiene 0 voces.

Última actualización por praevarynS hace 1 mes.

Asistido por: Itamar.

Autor Publicaciones
diciembre 15, 2025 a las 12:47 pm

praevarynS

Hello, I tried following the instructions here to add a vertical floating language switcher to my website https://wpml.org/documentation/getting-started-guide/language-setup/language-switcher-options/custom-language-switcher/

Added this to the functions.php file

add_action('wp_footer', 'wpml_floating_language_switcher');

function wpml_floating_language_switcher() {
echo '';

do_action('wpml_add_language_selector');
echo '';
}

but the language switcher did not appear on my website (mobile or desktop). Not sure what I'm doing wrong.