It was included in version 3.0.2. Select it in the plugin’s options tab.
Of course I should have checked this first as I haven’t updated yet to the latest version.
Many thanks for replying so quickly.
Unfortunately I’m getting an error on successful submission –
Warning: Illegal string offset ‘success’ in /wp-content/plugins/wp-members/inc/register.php on line 214
Looks like there is a fix needed. If you could try this out and let me know how it works out, that would be great – then I will patch it in the next release.
In the file /inc/register.php, line 214 is this:
if ( $response['success'] == false ) {
Just before it, add $response = json_decode( $response, true ); so that it looks like this:
$response = json_decode( $response, true );
if ( $response['success'] == false ) {
Thanks Chad, looks like that’s fixed it! 🙂
Thanks for the update – I’ll incorporate that into the next release.