Okay
  Public Ticket #1446894
Remove autohide login form in woocommerce checkout page
Closed

Comments

  • karthickk1996 started the conversation

    In woocommerce checkout page the login form is hidden by default. That is there is an action needed to click to view the login form which is using some kind of ajax or javascript.

    Can you please remove it and show the login from by default without any need to click to view the form.

    Thank you in Advance.

  •  608
    WordPress replied

    Hi,

    You can add style css:

    .woocommerce-checkout .woocommerce-info{
        display: none;
    }
    .woocommerce-checkout .woocommerce-form{
        display: block !important;
    }