I'm trying to edit a welcome gate type plugin, that shows a welcome page once on a new user's first visit, and throw a form on it.
I've stripped away everything except the form, and it's still not working, so I'm guessing it's missing some header codes or javascript or something that get's included that I don't see when I drop it in via the shortcode menu.
How can I insert a form on a non-standard page? The form shows, but doesn't respond.
Here's the page
Here's the page code that I stripped, there's a bunch more elements in the plugin, but I erased everything to try and troubleshoot except the form insert code.
Help appreciated, I'm not sure what's missing.
====
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<center><?php echo do_shortcode('[gravityform id="2" name="Mailchimp ITA Newsletter Form" title="false" description="false" ajax="false"]'); ?></center>
</body>
</html>