Support » Everything else WordPress » Login Form Language

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.wordpress.org/plugins/yith-custom-login/ for example

    Hopefully with will help you in the right direction

    • This reply was modified 1 week, 4 days ago by just2ronald.

    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 1 week, 1 day ago by raktaktak.
    • This reply was modified 1 week, 1 day ago by raktaktak.
Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.