Plugin Support
Emma
(@emma24)
Hi @stevlandambrose,
Thank you for reaching out and for the detailed report. 🙏
I understand the issue you’re facing with the Logo URL. However, after testing on our end, we could not replicate the issue. In our environment, the URL is being added properly as expected:
<h1><a href="https://mysiteurl.pro/test">https://mysiteurl.pro</a></h1>
That said, we’ll be conducting another round of QA to ensure that this doesn’t occur under specific conditions. If the issue is again not replicated on our end, we may need temporary access to your setup to investigate.
For now, instead of changing the code directly in the LoginPress plugin, you can use this filter in your theme’s functions.php file:
function custom_login_logo_url() {
return 'https://your-custom-url.com'; // Replace with your desired URL
}
add_filter('login_headerurl', 'custom_login_logo_url');
Thanks again for your patience and for using LoginPress. We’re committed to ensuring everything works seamlessly.
I ended up adding some custom js to achieve the same result.
But thank you for your quick and super helpful response!