• Hi, i have a problem with qTranslate-X’s Language Switcher. I’m using Oneengine theme. The switcher doesn’t work, or better, the link is correct, but if i click on the button, nothing append. If i rightclick and open in new tab all works fine. So why this button doesn’t lunch the URL and if i open in a new tab works fine?

    Sorry for bad english.

Viewing 2 replies - 1 through 2 (of 2 total)
  • jan.hemelings

    (@janhemelings)

    Please take a look on oneengine/js/main.js line 25

    Change:
    $(‘#main-menu-top a,ul.slicknav_nav li a’).click(function(event){
    event.stopPropagation();
    event.preventDefault();

    To:
    $(‘#main-menu-top a,ul.slicknav_nav li a’).click(function(event){
    if( this.hash.indexOf(“#”) < 0 )
    return true;
    event.stopPropagation();
    event.preventDefault();

    Thread Starter daven89

    (@daven89)

    Hi, i didn’t even remember this post! Many thanks for the answer! I found this solution myself, it work! Thanks again! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘qTranslate-X and OneEngine LanguageSwitcher problem’ is closed to new replies.