• raktaktak

    (@raktaktak)


    Dear All,

    As my Frontend WordPress is in German, I set my Blog to German, but I still like to have the Backend in English, so I set the User Language to English.

    My problem is setting the login form also on English, so even if Frontend Site is in German, I still want the Login Form to be in English.

    I tried to google everything, but nothing helped so far, so I kindly ask you for a solution.

    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Ronald Gijsel

    (@just2ronald)

    You could css the German labels to be replaced by English labels…
    Add the css code to the child theme so that it is not overridden at the next update.
    If you are less comfortable with adding code you could add a plugin that allows you to customise your login screen with new labels
    https://en-gb.www.ads-software.com/plugins/yith-custom-login/ for example

    Hopefully with will help you in the right direction

    Thread Starter raktaktak

    (@raktaktak)

    I added this code to my child theme, I found it on internet.

    Do you think its the right solution?

    Code:

    /**
     * Login Language is English
     */
    add_action('init', 'remove_login_translation');
    function remove_login_translation() {
        if( in_array( $GLOBALS['pagenow'], array( 'wp-login.php', 'wp-register.php' ) ) ) {
            unload_textdomain('default');
        }
    }
    • This reply was modified 8 years ago by raktaktak.
    • This reply was modified 8 years ago by raktaktak.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Login Form Language’ is closed to new replies.