Doesn't send data from a form that is in a popup

I have few forms on my page in site. One of them into <footer> modal window. I criated it from php shortcode;

<?php if ($form = get_field('header_form', 'option')) { ?>
	<?php echo do_shortcode($form); ?>
<?php } ?>

When I try to submit data from this form to register a new user, I don’t see a message about “Thanks for contacting us! We will get in touch with you shortly.”
I also see In my URL something like thise

Can you tell me what may be the problem? * When I use another form on the same page, everything is submitted successfully.

Find the problem…

<form>
<?php if ($form = get_field('header_form', 'option')) { ?>
	<?php echo do_shortcode($form); ?>
<?php } ?>

  </form>

Looks like you nested your Gravity Forms form inside a <form> tag…

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.