• Resolved ZLC

    (@kindnessville)


    Hi there.

    Small detail: My login page no longer displays my website’s favicon. I’m wondering how to include it on the login page.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Muhammad Arslan

    (@wparslan)

    Pending
    Hey @kindnessville

    Thank you for contacting us.

    You can add the favicon from your site’s customizer section for the login page.

    Here is how you can add it.

    if you have set up a favicon for your site from the customizer, it will also set the favicon for the Login page. [Helping Screenshot]

    If you have not kindly set it up and it will resolve your problem.

    If that doesn’t resolve your problem, Kindly place the following piece of code in your child theme’s functions.php file.
    It will add this custom image of your choosing as the favicon of login page.

    function add_site_favicon() {
        printf('<link rel="icon" href="%s" />', 'Your Image Link Here');
    }
    add_action('login_head', 'add_site_favicon');

    If you need any assistance do let us know. We would be happy to help you.

    Have a nice day.

    Thread Starter ZLC

    (@kindnessville)

    Thank you! It worked perfectly. I hope you have a nice day too.

    Hi @kindnessville,

    You are welcome. It would be great if you can share your feedback here.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Favicon’ is closed to new replies.