I am able to get my gravity form to show as a meta box in the custom post type of my choice however it looks like I am going to need some help to get any further. The form seems to be displaying as it would in the edit form screen just without the necessary javascript.
add_action("admin_init", "dsh_admin_init");
function dsh_admin_init(){
add_meta_box( 'new-gravity-boxes', 'Gravity Forms - Property Profile', 'gf_custom_meta_box', 'property', 'normal', 'high' );
}
function gf_custom_meta_box(){
gravity_form(2, false, false);
}
The output looks like this: http://designseohosting.com/wp-content/uploads/2011/04/add_meta_box-using-a-gravity-form.png
I just want to edit my custom field data with a form created by gravity forms. Can I accomplish this with some hooks or filters if I populate the form fields from the custom meta data values?