Site logo

[Resolved] Remove register form by css

Home Forums Support [Resolved] Remove register form by css

Home Forums Support Remove register form by css

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2545273
    Jusung

    Hello. On this page, you can see register and login form.
    here I wanna remove register from and align login form to center.

    I used “display:none;” to remove but can’t align login form to center.

    Can I make it by css or php code?
    you can find the same page on the second link.

    So, what I am trying is that

    Removing register form and align login form to center in Login Page
    Removing login form and align register form to center in My-account Page.

    #2545354
    David
    Staff
    Customer Support

    Hi there,

    go to Woocomerce > Settings -> Accounts & Privacy and unchecK Allow customers to create an account on the "My account" page

    #2545357
    Jusung

    I need register form on my account page.
    I want to remove login form on my account page.
    So, I can’t do it.

    #2545401
    David
    Staff
    Customer Support

    How is the Login page been created ?

    #2545405
    Jusung

    I made login page and I added shortcode, which is the same thing on my account page.

    Therefore, I need to use remove with page id I think..

    #2545456
    David
    Staff
    Customer Support

    You can use this CSS:

    .page-id-90 .woocommerce .u-column2 {
        display: none;
    }
    .page-id-90 .woocommerce .u-column1 {
        margin: auto;
        float: none !important;
    }
    
    #2545756
    Jusung

    Thank you!!

    Finally this is settled!

    #2546319
    David
    Staff
    Customer Support

    Glad to hear that

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.