Hi
PLS help me disable password field and capchar auto insert register form.
My register form create by user frondend. How can i fix it.
and How do for reset setting to default setting, i've try to delete plugin and resetup the plugin but not work.
Hi, the password field is a required field of register form. You can delete this field by code below
remove_filter( 'regform_fields_rcl', 'rcl_password_regform', 5 );
but it will devastate the registration functions of plugin sure. And you will need to fix any errors after it.
I recommend to use any other plugin for the creating the registration form with features needed to you.
The latest version of plugin dont have any problems with the deletion process. If you have any problems with it please describe more details here I could check it.
Hi, the password field is a required field of register form. You can delete this field by code below
remove_filter( 'regform_fields_rcl', 'rcl_password_regform', 5 );
where is in the plugin i can find this code?
The latest version of plugin dont have any problems with the deletion process. If you have any problems with it please describe more details here I could check it.
i just wanna reset all my setting to default setting of the plugin. but don't have any way to do that.
after i try to delete and resetup the plugin for back to default setting but it's still my setting.
I understood.
You can delete all options of plugin in the database. Open the table 'wp_options' and find option with a key 'rcl_global_options' and delete it. Also you can disable all addons of plugin just by deleting the option 'rcl_active_addons'
add_action('init', function(){
remove_action( 'register_form', 'rcl_filters_regform', 1 );
});
this code is working and i don't seen the password field but it's has request something like the field hide and can't not register new user.
help me to disable all field auto insert.