Hi,
I just looked at your form I can see that it is a modified version of the woocommerce account login form.
In your case when I checked the html code of your “woocommerce” login form using developer tools I noticed you have a hidden nonce input as follows:
<input type=”hidden” id=”_wpnonce” name=”_wpnonce” value=”8b375683f2″>
The above is not quite right. The original woocommerce form has a different “name” and “id” value for the hidden nonce input. They should be as follows:
<input type=”hidden” id=”woocommerce-login-nonce” name=”woocommerce-login-nonce” value=”8b375683f2″>
In order to identify a woocommerce login form submission, the aiowps plugin listens for a $_POST to see if $_POST[‘woocommerce-login-nonce’] is set.
However in your case the form does not have the correct hidden input and hence the aiowps plugin is never catching the form submission.
As stated in my email I think that your theme is most probably modifying that nonce input name and id attributes and you will need to find where in the code this is done and modify it so that the nonce field has the correct name.
You will probably need to look somewhere in your theme folders, eg, yourtheme/woocommerce/myaccount/form-login.php
Look for a line which looks similar to this:
wp_nonce_field( ‘<something>’, ‘_wpnonce’ );
change the above to:
wp_nonce_field( ‘woocommerce-login’, ‘woocommerce-login-nonce’ );
Or better still, ask the theme developer to look into this for you.