Hi, I love that the forms can be added within the post itself.
BUT I want to add the form in a different location that the post itself. I have a custom type of 'job' and for every single 'job' post I want to add the form 'apply for this job' so that it shows up below every single job post.
I'm using Thesis as my developer theme and this custom code for a wordpress hook to add the form:
function add_applyforthejob() {
global $thesis_design;
if (is_single() && get_post_type() == 'job') {
?>
[gravityform id="2" name="Apply for the job"]
<?php
}
}
add_action('thesis_hook_after_content', 'add_applyforthejob');
WHAT IS THE CORRECT PHP CALL / CODE TO ADD A GF FORM?
You can see what I'm trying to do here: http://clientsof.cathiegraphy.com/HuntersRecruitment/job/german-speaking-vat-account-manager/
Thanks
Cathie