Archived topic
Remove register form by css
7 replies · Started by Jusung on February 24, 2023
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.
Hi there,
go to Woocomerce > Settings -> Accounts & Privacy and unchecK Allow customers to create an account on the "My account" page
I need register form on my account page.
I want to remove login form on my account page.
So, I can't do it.
How is the Login page been created ?
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..
You can use this CSS:
.page-id-90 .woocommerce .u-column2 {
display: none;
}
.page-id-90 .woocommerce .u-column1 {
margin: auto;
float: none !important;
}
Thank you!!
Finally this is settled!
Glad to hear that