I can't seem to get the gform_post_submission OR the gfrom_pre_submission hooks to fire after my form submission.
I am embedding the forms in my theme with php. The form submits and the entry is saved to the database, but its not firing the hooks??
In my functions.php I have the following
834 add_action("gform_post_submission", "dcreate_event",10,2);
835 function dcreate_event($form)
836 {
837
838
839 print_r($entry);
840 die('refresh me');
841 }
The Wordpress version is 2.9.2