Viewing 5 replies - 1 through 5 (of 5 total)
  • 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;
    }
    Thread Starter WebGuruSana

    (@webgurusana)

    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 : https://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;
    }
    Thread Starter WebGuruSana

    (@webgurusana)

    Great thank you. Well, I was thinking if I could skip the product page and send the users directly to CART.

    Flow : https://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 https://skculinarystudio.com/index.php/cart/ page!

    Please help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Returning customer? Click here to login form not working’ is closed to new replies.