Custom Form 7 integration
-
I am using some code to integrate the shortcode into Contact Form 7. This is the code:
add_filter( ‘wpcf7_form_elements’, ‘mycustom_wpcf7_form_elements’ );
function mycustom_wpcf7_form_elements( $form ) {
$form = do_shortcode( $form );return $form;
}The code works just fine and I have access to the form info in CF7. The only issue is that the submit button no longer works from CF7. So, people can’t email me the data that they have filled out. Any ideas?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom Form 7 integration’ is closed to new replies.