• Resolved PedroDK

    (@pedrodk)


    Hi,

    I would like to know why this phrase: “You are already logged in.” can’t be translated.

    It’s not present in the .po-file using Loco translate.

    The phrase is displayed on the page containing the [members_login_form] shortcode when accessing the page as a logged-in member.

    Can you help me with this? Thank you very much.

    Best wishes Peter

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Omar ElHawary

    (@omarelhawary)

    Hi @pedrodk,

    Thanks for reaching out to the Members Support Team!

    I can see the issue, so I’ll report it to our development team for review. In the meantime, you can override the message using the custom JavaScript code below. You can add this using a plugin like WPCode:

    document.addEventListener('DOMContentLoaded', function () {
    const notice = document.querySelector('.members-login-notice-success');
    if (notice) {
    notice.textContent = 'Welcome back! You are already logged in.'; // Replace with your preferred message
    }
    });

    Let me know if you need help implementing it!

    Regards,

Viewing 1 replies (of 1 total)

The topic ‘Login form notice’ is closed to new replies.