I've enable register_user plugin and created register.php with below script
<?php printRegistrationForm($thanks=null); ?>
but after registration is done there is no thanks message OR error message show up, It's back to login page.
How to enable this message? How to show up below error message on register_form?
switch ($notify) {
case 'exists':
echo gettext('The user ID you chose is already in use.');
break;
case 'mismatch':
echo gettext('Your passwords did not match.');
break;
case 'incomplete':
echo gettext('You have not filled in all the fields.');
break;
case 'notverified':
echo gettext('Invalid verification link.');
break;
case 'invalidemail':
echo gettext('Enter a valid email address.');
break;
case 'invalidcaptcha':
echo gettext('The captcha you entered was not correct.');
break;
Thanks
Zham
<link removed by moderator - Please don't post links if not required in context of your post. Feel free to link your profile name. Thanks >
Comments
Is it something that I do not know about PHP scripting or there is a bugs?