Домой Wp-Recall WP-Recall: Проблемы и решения Disable password field auto insert register form
10ответ(ов) в теме
dungphamm
не в сети 3 года
На сайте с 06.04.2021
Участник
Тем 1
Сообщения 6
1
21:09
Версия WP-Recall: 16.24.41

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.null

and How do for reset setting to default setting, i've try to delete plugin and resetup the plugin but not work.

Редакции сообщения
07.04.2021 21:13dungphammПричина: не указано
0
Андрей CS
не в сети 19 часов
На сайте с 30.11.-0001
Администратор
Тем 71
Сообщения 16855
2
21:43

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.

1
dungphamm
не в сети 3 года
На сайте с 06.04.2021
Участник
Тем 1
Сообщения 6
3
21:56

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.

Редакции сообщения
07.04.2021 22:06dungphammПричина: не указано
0
Андрей CS
не в сети 19 часов
На сайте с 30.11.-0001
Администратор
Тем 71
Сообщения 16855
4
22:06

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'

Редакции сообщения
07.04.2021 22:07Андрей CSПричина: не указано
0
dungphamm
не в сети 3 года
На сайте с 06.04.2021
Участник
Тем 1
Сообщения 6
5
22:28

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 );

i have add this code in functions.php but it still have the password field and capchar.
Help me to fix it.

0
Андрей CS
не в сети 19 часов
На сайте с 30.11.-0001
Администратор
Тем 71
Сообщения 16855
6
22:32

try this code

add_action('init', function(){
   remove_action( 'register_form', 'rcl_filters_regform', 1 );
});

1
dungphamm
не в сети 3 года
На сайте с 06.04.2021
Участник
Тем 1
Сообщения 6
7
22:40

add_action('init', function(){
remove_action( 'register_form', 'rcl_filters_regform', 1 );
});

this code is working, thank you to much for support and the plugin.

0
dungphamm
не в сети 3 года
На сайте с 06.04.2021
Участник
Тем 1
Сообщения 6
8
08:19

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.
https://i.ibb.co/7kPzJB6/eror6.png
help me to disable all field auto insert.

Редакции сообщения
08.04.2021 08:20dungphammПричина: не указано
08.04.2021 08:24dungphammПричина: не указано
08.04.2021 08:24dungphammПричина: не указано
0
Андрей CS
не в сети 19 часов
На сайте с 30.11.-0001
Администратор
Тем 71
Сообщения 16855
9
08:59

try to add this code like this

add_action('init', function(){
    remove_action( 'register_form', 'rcl_filters_regform', 1 );
    remove_filter( 'registration_errors', 'rcl_get_register_user', 90 );
});

1
dungphamm
не в сети 3 года
На сайте с 06.04.2021
Участник
Тем 1
Сообщения 6
10
14:07

Андрей CS сказал(а)
try to add this code like this

add_action('init', function(){
    remove_action( 'register_form', 'rcl_filters_regform', 1 );
    remove_filter( 'registration_errors', 'rcl_get_register_user', 90 );
});

Perfect, Thank you again. 😊

1
Тема закрыта. Публикация новых сообщений запрещена.