Zubair Zahid
Zubair Zahid

Reputation: 228

WordPress - WooCommerce Registration not working

On Registration page when I fill the form and submit it, the page only reloads and nothing happens. And when I log in with an existing user, it works perfectly.

Any ideas about what might be causing this behavior?

I am using Woocommerce version 2.2.10 on WordPress 4.1 with HTTPS enabled.

Upvotes: 4

Views: 9251

Answers (1)

Zubair Zahid
Zubair Zahid

Reputation: 228

The theme was broken: On your host, open the file on the path “yourhost/wp-content/themes/new-commerce/woocommerce/myaccount/form-login.php”

Around line 110, you will find this piece of code:

wp_nonce_field( ‘woocommerce-register’, ‘register’ );

Change it to:

wp_nonce_field( ‘woocommerce-register’ );

Upvotes: 10

Related Questions