Passer au contenu Passer à la barre latérale

Ce sujet contient 0 réponses, a 0 voix.

Dernière mise à jour par praevarynS Il y a 1 semaine et 5 jours.

Assisté par: Itamar.

Auteur Messages
décembre 15, 2025 à 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.