cancel
Showing results for 
Search instead for 
Did you mean: 

Remove login on onepage/checkout

Remove login on onepage/checkout

Im setting up Google Shopping, but my store is not accepted, bacause there is needed password(login) on the checkout page, if you're not buing as guest.

 

Is there a way to set it up, so the customer don't need to choose between login or guest, and just go directly to the adress form?

1 REPLY 1

Re: Remove login on onepage/checkout

In order to remove "login" form on checkout page, you can try to implement following solution:

http://excellencemagentoblog.com/blog/2011/10/17/magento-onestep-checkout-remove-login-step/

 

Another method which can help you to achieve the similar effect is about making an event observer on customer_registration_is_allowed event, and put following code

public function disallowRegistration(Varien_Event_Observer $observer)
{
    $observer->getResult()->setIsAllowed(false);
}
If this response was helpful to you, consider giving kudos to this post.
If this response solved your problem, click accept as solution to help others solve this issue