• Resolved everlearn

    (@everlearn)


    Hi LoggedIn developers,

    I would love to see a notification that either tells the user that their other login session has been logged out after they log in (Allow mode) or that they can’t login because there’s another session active (Block mode).

    In my opinion this is an important feature that is missing from this plugin.

    Is there a hook that I can use to code and trigger my own notification?

    Thanks,
    Rob

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Joel James

    (@joelcj91)

    Hey @everlearn,

    Yes, we will show the error notice on the login screen. You can customize the error message using loggedin_error_message filter.

    Hi @joelcj91

    You can customize the error message using loggedin_error_message filter.

    Could you please tell me how to do this? I actually need to show my custom message and also in Spanish.

    Plugin Author Joel James

    (@joelcj91)

    Hi @mateito10,

    Here is an example how you can do it.

    
    add_filter( 'loggedin_error_message', function ( $message ) {
    	return 'YOUR CUSTOM MESSAGE';
    } );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Notification possible using a hook?’ is closed to new replies.