Viewing 12 replies - 1 through 12 (of 12 total)
  • There are some settings for Registration in the Woocommerce >> General Tab:
    -Registration
    |—Allow registration on the checkout page
    |—Allow registration on the “My Account” page
    |—Register using the email address for the username

    And besides this controls, “User registration” is a WordPress functionality. WooCommerce uses that WP-function in order to add a new user-role as customer.

    If you don’t want any users to register than you may want to look at the WordPress Main Settings

    WordPress Admin >> Settings >> General
    -Membership
    |–Anyone can register

    Be sure that checkbox is unchecked.

    Thread Starter bmaggot

    (@bmaggot)

    Thanks, I disabled all those.
    Yet paragraph “woocommerce-info” appeared anyway.
    I’ve just hidden it with custom post css.

    Hey bmaggot,

    Can you tell me the css you used to hide the Returning Customer Info Box? I don’t want to remove the Coupon Info Box on that page however. Just the Returning Customer Log In Info Box.

    Thread Starter bmaggot

    (@bmaggot)

    .woocommerce-info {
    display: none;
    }

    I double checked and none of the above mentioned boxes are checked, yet when I took the site live, the Returning Customer / login box was present.

    I can prolly figure out how to hide it in my custom.css, but would prefer to add an action/filter to the functions.css Can anyone give me something to work off of?

    here is the code that would prolly hide it:

    `article.post-180 .woocommerce-info }
    display: none;
    }’

    I’m pretty sure if I use the code by bmaggot that will render all my wc-info boxes hidden throughout my site, when I just want to remove the one on the checkout page.

    Thanks in advance for any assistance!

    Hi,
    Just wondered if anyone could help me with my woo commerce checkout. I have not actually had a sale yet so don’t know if it is fully working. When I have tried to follow through checkout myself it comes up as error.

    Also I would like to be able to display payment methods i.e. visa paypal etc more visibly on my site.

    I am a jewellery designer not a web developer and i am doing this on my own so am not good with jargon. Have managed to get this far so can’t be too bad !

    Any help would be much appreciated
    My site is
    Thanks Gail

    atgdesign

    (@atgdesign)

    Though all the registration is turned off, returning customer box still shows in safari and firefox mac, ok in Chrome on checkout page. Weird. Thoughts on that?
    Thanks,
    James

    CharlyIBC

    (@charlyibc)

    atgdesign if you use Firebug or whatever web dev tool, you can right click on the box and find what you need to put in your custom.css or child.css as display: none; But you need to be sure you use the right ccde.

    If you don’t know how to do this, post a link to your site for someone to assist in the code you need.

    atgdesign

    (@atgdesign)

    I think I got it after inspecting the element in Chrome, then added to css. thanks

    .woocommerce-checkout .log-info-container{
    	display: none;
    }

    That’s the way.

    Thanks Micro

    remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_login_form', 10 );

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Remove login from checkout page in WooCommerce’ is closed to new replies.