Some setup niggles then very nice!
-
Very nice – just some setup niggles which were easy to fix and not the plugin’s fault.
Niggle one: On Chrome (Windows) the initial setup wizard loops, appearing to keep pushing the premium version but this isn’t the case. Force reloading the page and clearing the cache stopped the looping (so it’s not the plugin, it’s a Chrome thing).
Niggle 2: GDPS message doesn’t show – not the plugin’s fault and easily fixed. I have a custom, tabbed WooCommerce login/registration page for which the plugin’s GDPR message isn’t displayed. The GDPR message is loaded by the plugin’s /core/LimitLoginAttempts.php function hooks_init() which – if you’re happy coding – you can find line around 136
add_action( 'login_footer', array( $this, 'login_page_gdpr_message' ) );
My tabbed forms don’t display the footer, hence no message. Easily fixed – replace the above with
//add_action( 'login_footer', array( $this, 'login_page_gdpr_message' ) );
/* --- Use hooks below for tabbed WooCommerce login/registration form -----*/
add_action( 'login_form', array( $this, 'login_page_gdpr_message' ) );
add_action( 'woocommerce_login_form', array( $this, 'login_page_gdpr_message' ) );Et voila! The GDPR message appears below the password field, nice and unobtrusive yet there as required.
Very nice plugin, it even has the option to remove a link to it from the Dashboard top bar if that’s felt to be obtrusive.
- You must be logged in to reply to this review.