Multiple custom forms
-
Hi,
I have two custom php forms in different pages.form 1 name: registration_form
form 2 name: booking_formfunction add_custom_recaptcha_forms( $forms ) { $forms['my_custom_form'] = array( "form_name" => "Custom Form Name" ); return $forms; } add_filter( 'gglcptch_add_custom_form', 'add_custom_recaptcha_forms' );
How does this function transform to work for all forms? Do I have to duplicate the function for each form or can I include both forms in one function?
Other question… if the function of sending the form happens in javascript, how does the control of the captcha to the click of the button? Both forms have the confirmation button connected to a javascript click function
Thank you
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Multiple custom forms’ is closed to new replies.