Plugin Contributor
royho
(@royho)
That’s because you have some issues with your HTML/CSS. It appears the container that comes after the login form is covering up the form because the floats are not cleared.
You can try .woocommerce-info { clear:both; } and see if that works for you.
I’ve found out the problem. You can probably get it to work by disabling coupons. When either the Returning customer or have a coupon link is clicked, they both bring up the woocommerce-info form ontop of each other. The returning customer form is loaded first and then the blank coupon form is. I think the problem is with the template.
I’ve gotten it to work though. Try adding this to the end of your CSS file.
.login {
display: inline-block !important;
}
.woocommerce .woocommerce-info {
display: none !important;
}
Hey Royho, thank you so much for your help. It worked. 🙂
But I am stuck with the product page too 🙁 Suddenly, my product page is damaged. I have not inserted any sidebar to it yet it looks so shabby. Please help me.
Product Page Input : http://skculinarystudio.com/index.php/product/low-calorie/
kimsf – Thank you so much for your input. 🙂
It looks shabby because there is no clear space between the content and edge of the webpage. Try adding this code to add the white space in the CSS.
EDIT: Actually you should just delete the sidebar. It looks great with it deleted and then add white space.
#sidebar {
display: none;
}
#container {
width: 90%;
margin-right: auto !important;
margin-left: auto !important;
}
Great thank you. Well, I was thinking if I could skip the product page and send the users directly to CART.
Flow : http://skculinarystudio.com/index.php/event/low-calorie-cooking-2/. The register button at the bottom can be replace by ADD TO CART?
And once thats clicked, we get redirected to the http://skculinarystudio.com/index.php/cart/ page!
Please help.