• Resolved stianand

    (@stianand)


    The login box is not showing on my page. It sometimes flashes briefly, but disappear straight away.
    What can be the issue?

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @stianand!

    What can be the issue?

    That is due to the following CSS code you’ve added to your site:

    form.woocommerce-form-login {
        display: none !important;
    }

    You need to remove that code, or add the following CSS code:

    form.woocommerce-form-login {
        display: block !important;
    }

    Cheers!

    Thread Starter stianand

    (@stianand)

    I tried to add

    form.woocommerce-form-login {
        display: block !important;

    }

    in appearance -> customize -> extra css. but it didn’t help. I’m not sure where

    form.woocommerce-form-login {
        display: none !important;
    }

    is added?

    • This reply was modified 3 years, 11 months ago by stianand.
    • This reply was modified 3 years, 11 months ago by stianand.
    Plugin Support B C. a11n

    (@battouly)

    Hi @stianand,

    I see you added the code shared by @rynald0s but the code you added earlier (which is to hide the login box) is overriding it.

    For the login box to start showing on the page again, you will want to remove the code below and save the changes.

    Code to remove:

    form.woocommerce-form-login {
        display: none !important;
    }
    Plugin Support abwaita a11n

    (@abwaita)

    Hi @stianand,

    We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, you were able to find a solution to your problem!

    If you have further questions, please feel free to open a new topic.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Login Box not showing’ is closed to new replies.