Hi,
i’d like to display the polylang language switcher with:
<?php pll_the_languages();?>
right of the search icon in enfold.
i tried helper-main-menu.php but without luck.
can you help where i can put the code?
thanks
mathias
Hey MathiasVie!
Thank you for using Enfold.
Please use this on functions.php:
add_action('ava_inside_main_menu', 'ava_main_menu_addition');
function ava_main_menu_addition() {
pll_the_languages();
}
Regards,
Ismael
Hi Ismael,
thanks this worked out super-amazingly smooth.
added this to my child themes functions.php and copied/modified a bit the classes of the main nav.
it fits perfectly :D
thanks
mathias