Forums
Home / Plugin: Loggedin - Limit Active Logins / Customize messages
(@danhay)
5 years, 8 months ago
Is there anywhere to customize the messages? Thanks
(@joelcj91)
Hey @danhay,
You can customize the message using loggedin_error_message filter. Use something like below,
add_filter( 'loggedin_error_message', function() { return 'Your custom message'; });
Perfect! Thanks for the quick response