1

(1 replies, posted in PunBB 1.4 additions)

Is there any reCAPTCHA extension available for the registration? I found this one http://punbb.informer.com/forums/topic/ … recaptcha/ but it says that its not compatible with the latest version.

If there is no any extension, is there any basic information how to integrate the reCAPTCHA in the form directly?

I see following line next to each field in registration file (register.php).

<?php ($hook = get_hook('rg_register_pre_username')) ? eval($hook) : null; ?>

can someone tell what does get_hook function do? and what is 'rg_register_pre_username'. I understand that is for the username field, but I could not find rg_register_pre_username used anywhere else on the page. Can I randomly use any name there if I want to add an extra field?

I meant this 'pun_approval 1.4' extention: http://punbb.informer.com/wiki/punbb13/ … n_approval

which says:

Enable new registrations approval checkbox. In case it is checked all new registrations will be complete only after admin's approval.

So all I want is to add an extra required field in the registration field where user can write something, and I want to see that field data before I can approve. After I approve/reject the registration, I don't need that.

papi83dm I want to approve the new registrations manually (using the approval extension), and for that purpose I want to add an additional field in the registration form so that the user can give extra information in that field, which will help me to decide the membership approval/rejection.
The field does not need to be validated, but should be required so that its not empty.

Once I approve/reject the membership, then i dont need to keep that in the database.

I wish I could make my own plugin, but I am very new to this forum, so I dont know how to do that.

Hello,
I want to add an additional field in the registration forum. I do not want to display that field in the user profile. Is it possible to do that?
I have seen other topics but they are mainly about adding profile field.
Please let me know if there is any extension or any help about adding an extra registration field.