I have the GForm inside a collapsible object so it is not viewable unless you click it open.
The thing is once the form is submitted the page refreshes and closes the object so I'm unable to see the Confirmation message.
<a href="#" onclick="xcollapse('X000');return false;">Submit Post</a>
<div id="X000" style="display: none; background: transparent;position:relative;">
<?php gravity_form(1, true, true); ?>
</div>
Is there a way to call the confirmation message for a form outside of the gform shortcode. So that it only appears to confirm? Something I can put in the header or somewhere else in the template.