This topic has 2 replies, 2 voices, and was last updated 7 years, 6 months ago ago by Rose Tyler
In WooCommerce, we have enabled a guest to check out without a password. (Woocommerce -> Settings -> Checkout) However, we are unable to make this work in a test environment. Is there a way so people can check out as a guest?
Hello,
Please edit /wp-content/themes/woopress/woocommerce/checkout/form-billing.php file and change
<?php if ( $checkout->is_registration_required() ) : ?>
(38 line)
to
<?php if ( ! $checkout->is_registration_required() ) : ?>
and add this code in Custom css:
.woocommerce-checkout .create-account {
clear: both;
}
Also, it will be fixed in a new theme update. Thank you for the notice.
Regards,
Rose Tyler.
You must be logged in to reply to this topic.Log in/Sign up