How do I hard code a form - in case I want to drop it in raw (not as a shortcode), into widget area which is disconnected from the theme.
Taylor
How do I hard code a form - in case I want to drop it in raw (not as a shortcode), into widget area which is disconnected from the theme.
Taylor
You would use the function call in your template or theme:
http://www.gravityhelp.com/documentation/page/Embedding_A_Form#Function_Call
[php]
<?php gravity_form(1, false, false, false, '', false); ?>
Be sure to read the documentation on enqueuing your own scripts when you embed a form in this manner.