With every page load, the PHP error log shows:
PHP Warning: Cannot modify header information - headers already sent in /wp-content/plugins/simplr-registration-form/lib/wp-session-manager/includes/class-wp-session.php on line 128
To fix, change that line 128 from:
setcookie( WP_SESSION_COOKIE, $this->session_id . '||' . $this->expires . '||' . $this->exp_variant , $this->expires, COOKIEPATH, COOKIE_DOMAIN, $secure, $httponly );
to:
if ( ! headers_sent() ) {
setcookie( WP_SESSION_COOKIE, $this->session_id . '||' . $this->expires . '||' . $this->exp_variant , $this->expires, COOKIEPATH, COOKIE_DOMAIN, $secure, $httponly );
}
]]>
Hello,
I can see that this plugin hasn’t been updated for 2 years, since then reCAPTCHA V1 has been shutdown.
Does it support the new(er) reCAPTCHA?
Thanks in advance
]]>I am using this plugin for user registration , its working fine for me on website but i need to create the web service for mobile based on this registration , kindly help with this .
]]>I am not sure if this plugin is responsible for this redirect that only happens when a non-admin user is logged in but what happens is:
When I attempt to go to /wp-admin/profile.php I get redirected to page that is not the default WordPress profile page.
Even when I deactivate this plugin I still get the same behavior.
Any help would be appreciated.
]]>If you have a field set to not show in a user profile, when the user updates their profile, the field data will be cleared out.
The ‘simplr_reg_profile_save_fields’ function in ‘simplr_form_functions.php’ is not checking to see if a field is visible before trying to update it.
My code below adds a check to see if is set to be ‘show in profile’. Note this will also mean admins can not update this hidden field. An additional check to see if admin could be added if you want admins to be able to update it.
function simplr_reg_profile_save_fields($user_id ) {
$custom = new SREG_Fields();
$data = $_POST;
$fields = $custom->fields->custom;
foreach($fields as $field):
if(@$field['show_in_profile'] != 'no') { //added this line to not clear or save data if set to hide on profile page
if(!in_array($field['key'] , simplr_get_excluded_profile_fields() )) {
if($field['type'] == 'date')
{
$dy = $data[$field['key'].'-dy'];
$mo = $data[$field['key'].'-mo'];
$yr = $data[$field['key'].'-yr'];
$dateinput = implode('-', array($yr,$mo,$dy));
update_user_meta($user_id,$field['key'],$dateinput);
} else {
update_user_meta($user_id, $field['key'], $data[$field['key']]);
}
}
} //added this line to not clear or save data if set to hide on profile page
endforeach;
}
]]>
Plugin version: 2.4.6
After login show this errors and nothing more:
Notice: Undefined index: query in ****/wp-content/plugins/simplr-registration-form/simplr_form_functions.php on line 1231
Warning: Cannot modify header information - headers already sent by (output started at ****/wp-content/plugins/simplr-registration-form/simplr_form_functions.php:1231) in /home3/rayford/public_html/photography/wp-includes/pluggable.php on line 1174
For fix this need following code in “simplr_form_functions.php”:
function simplr_register_redirect() {
$file = parse_url($_SERVER['REQUEST_URI']);
$path = explode('/',@$file['path']);
global $simplr_options;
parse_str(@$file['query']);
And change last string string to:
$file['query'] = parse_str(@$file['query']);
Hi, very useful plugin, but it’s not possible to translate frontend field names using WPML. Any chance this can be fixed soon?
thanks
]]>I have two different forms set up using this plugin. An Employer form and a Student Form.
The default user role assigned in the general settings is set to student but I want users who register with the employer form to be set as the user role employer.
But those who register using the employer form keep getting set as a student for some reason! Even though I set the defined role in the generated form for employer form as “employer”
I don’t know why this keeps happening! Can anyone help?
]]>Hi,
I want to move Email and Confirm Email fields to the top of form. Can anyone help?
Thank You!
]]>Hi there
How do i activate the user in the wordpress admin area mobile view ?
i cannot see the activate menu in the dropdown box.
thanks
]]>Where do I find the information of the registered members as an admin?
]]>Hello,
I am getting this error message while trying to “register” “Security: Role specified doesn’t match form’s designated role”.
I have selected default user role as a “Customer” from General settings and in plugin’s shortcode the role is also as a “customer”. Can you please tell me where could be the issue is? The signup form is https://www.wwvape.com/signup-user/
Thank You,
]]>I have this plugin installed on multiple sites and whenever I update toe version 2.4.4 or 2.4.5, it no longer allows users to register. When they hit the submit button on the form, it redirects them to a 404 page. When I revert the plugin back to version 2.4.3, it works just fine.
No clue what is causing this issue, but I’ll be waiting for 2.4.6 to come out before upgrading this plugin again!
]]>Hi,
I have added some of the columns from the plugin to the list users page but when I do a search for something on in these columns there is no results.
Is there anyway to include these columns in the user search?
Thank you!
]]>The plugin started issuing errors to everyone trying to register. I tried to turn it off and then back on and now I get the following message. I’ve uninstalled and deleted the files three times and cannot get it to work.
Plugin could not be activated because it triggered a fatal error.
Warning: require_once(/home/content/37/10356537/html/wp-content/plugins/simplr-registration-form/lib/messages.php): failed to open stream: No such file or directory in /home/content/37/10356537/html/wp-content/plugins/simplr-registration-form/simplr_reg_page.php on line 40
]]>Hello Support,
I have use this plugin, but i don’t know how to add upload field in registration form ,please give me solution.
Thanks in advance!
]]>Hi,
plugin work great but admin can’t receive mail.
User that are regestering receive normally.
If i use default registration form from wordpress, it send mail normally also to admin.
Where i’m wrong?
Thnaks
Debian server, LAMP php 5.6
]]>hi,
The registration form works perfectly in http but the recaptcha stop showing as soon as I switched to https. Now the recaptcha box does not show but the form requires a recaptcha so no one could resgiter.
]]>Dear developers, captcha v1 will be deprecated in a short time. There’s any plan to upgrade your plugin to the new recaptcha v2 ? I see you have it in the “to do” section…we hope has been done ??
Regards
Hi,
I use latest version of WP and This plugin, I want to allow users to access their profile only and update.
Thank You,
Dear authors, community
This plugin is very useful for me.
But I need one thing.
I’ve added a checkbox “Subscribe for news” but how to make it checked by default?
Hi, when a user register it will send an email with the ff. info
You should login and change your password as soon as possible.
Username: testuser2
Password: 1234pass
Login: https://mydomain.com
is there a way to change the link of the Login?
ex.
Username: testuser2
Password: 1234pass
from Login: https://mydomain.com change to https://mydomain.com/login
thanks
]]>Hi
I want to remove confirm email and confirm password from registration as i need very simple form like username,password,Email.
Thanku
Mani
I have created a hidden field and want to delete that what is the procedure for that
]]>Hi,
Do you know if it’s possible to have a custom page used for the redirection once a user has confirmed their email address? We don’t really want the user to be directed to the home page.
Thanks,
James
]]>Hi,
Could anyone advice me how to remove the default field “username” and “confirm email” from the form. I am not a php developer.
Thanks,
]]>Hi,
I have version 2.4.3 of the Simplr User Registration Form Plus plugin on my website.
A user can sign-up now and choose their own password
After signing-up the user recieves an email to confirm the subscription
After confirming the subscription the user recieves the email that the account is activated.
If I now go to the login page I have, or the wp-admin page to sign-in, the password doesn’t seem to work.
I see that the user is addded to my user list with the correct username but on the login page it tells me that the login is invalid.
If I manually change the password I can login
———————————————————————-
Second thing is that I would Like to have only one email field in the registration form ( no extra field to check if the email is correct)
———————————————————————-
I do recieve the given password in the first email, if I add the field that users can choose their own password.
If I use the form without the option to choose your own password, I recieve no password in the email. Does that mean a user still has to setup their password or is there an option to send the password set by wordpress?
Hi,
I like the plugin alot as it has got all the elements according to my requirements and it is built very well. But once a user is registering, it prompts an error message stating that Error establishing database connection. Before it was prompting 405 Not Allowed nginx/1.8.1 error.
Please enlighten me to fix this bug.
]]>Hi Marcel,
Can you tell me how users can reset their password if I use the login form from the [profile_page]. I don’t want to use the normal wordpress one and I thought maybe your plugin has one.
Best regards,
Basti
Not sure how to attack this:
short code is on a wp page
it is showing as text rather than being parsed.
I’m using a Headway Theme. The wp ‘pageis displayed using the
content` block from the theme.
Any help is appreciated.
Ron