Plugin Author
edo888
(@edo888)
Hi,
I can see that you have a special event listener for mobile menu list items set in /wp-content/themes/wprentals/js/control.js file:
$('.mobilex-menu li').on('click',function (event) {
event.stopPropagation();
var selected;
selected = $(this).find('.sub-menu:first');
selected.slideToggle();
});
This stops the click event to reach the language switcher code.
Please consult your theme developer and ask them to fix it, so the language links can be actually clicked and the event attached to them to change the language can be fired.
Thanks! 🙂