• Resolved David Perroud

    (@davidperroud)


    Dear,
    (with mqtranslate and woocommerce)
    when i activate woocommerce qtml, my admin change from french to english, and no possibilites to get it in french,
    i have all my plugins updated and the last wordpress version too.
    if any of you knows what’s happen…, it turns back in french if i deactivate the woocommerce qtml plugin.

    It does not cause any error or change in front end, but i got some problems with widgets in admin, the fields desapear, and i can’t write anything in.

    Thank you ??

    https://www.ads-software.com/plugins/woocommerce-qtml/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Manos Psychogyiopoulos

    (@franticpsyx)

    add_filter( 'wc_qtml_admin_default_language', 'remove_qt_admin_default_language' );
    
    function remove_qt_admin_default_language( $param ) {
        return false;
    }

    This should do the trick.

    Thread Starter David Perroud

    (@davidperroud)

    Hey, thanks for your reply,
    unfortunately, it didn’t change anything…

    i put the code in my setup theme file, should i put it somewhere else ?

    Plugin Author Manos Psychogyiopoulos

    (@franticpsyx)

    Yes, this needs to be placed inside a plugin file as the wc_qtml_admin_default_language filter is fired very early.

    Otherwise, if you don’t know how to do this, feel free to edit WC-qtML directly. Just look for the wc_qtml_admin_default_language filter and change true to false.

    Thread Starter David Perroud

    (@davidperroud)

    Hey, thank you very much,
    i put it in a plugin and my admin is back in french ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Language probleme in admin’ is closed to new replies.