dan.codes
dan.codes

Reputation: 3523

Is there an easy way to require an address from a customer when creating an account

Anyone know the easiest way to require a customer to fill out an address when creating their account?

Upvotes: 1

Views: 257

Answers (1)

dan.codes
dan.codes

Reputation: 3523

It looks like there is the address information in the template, which only shows when $this->getShowAddressFields() is true. It looks like this is only set for registering when using the multiple shipping addresses, so I just threw $this->setShowAddressFields(true); In the top of my template and it works fine. Probably should do this in a block or through an observer though.

Upvotes: 3

Related Questions