• Resolved Elissavet Soileme

    (@elisavet2ww)


    Translations are not working for all texts that are not register with textdomain.
    Example other-includes-wp-security-rename-login-feature.php lines like 691:

    				
    $errors->add('invalidkey', __('Your password reset link appears to be invalid. Please request a new link below.'));
    
    $errors->add('invalidkey', __('Your password reset link appears to be invalid. Please request a new link below.','all-in-one-wp-security-and-firewall'));
    

    *using wpml

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support vupdraft

    (@vupdraft)

    Can you try the following;

    1) Go to wp-content/all-in-one-wp-security-and-firewall/classes/wp-security-process-renamed-login-page.php
    
    2) Find the following code:
    
    if (function_exists('icl_object_id') && strpos($home_url_with_slug,$login_slug)){
                $home_url_with_slug = home_url($login_slug);
                function qtranxf_init_language() {}
            }
    3) Replace it with the following:
    
    if (function_exists('wpml_object_id') && strpos($home_url_with_slug,$login_slug)){
                $home_url_with_slug = home_url($login_slug);
                function qtranxf_init_language() {}
            }
    Plugin Contributor Prashant Baldha

    (@pmbaldha)

    We have resolved the issue in our development version of AIOS plugin. We will release it in next few days.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Translations mainly at rename login feature’ is closed to new replies.