Hooks & Filters for Pods Gravity Forms Add-On

Need to change the behavior of the Pods Gravity Forms Add-on? Use this list of filters to perform different functions, including loading specific records to be edited or populating fields based on specific IDs.

Gravity Forms

Covers interactions with Gravity Forms and our Pods Add-on for Gravity Forms which allows you to map your Forms to Pods Directly.

Form Shortcode

Used to put our Back-End Admin on the Front-end using the Pods Shortcode

Create New Record from Form Submission using Add

Real life example of a function to create a Pods record from fields submitted on a form. <?php function add_new_applicant () { // Get field values from form submission $first_name = $_POST['first_name'] $last_name = $_POST['last_name'] $telephone = $_POST['telephone'] $email = $_POST['email'] $fields = array( 'first_name' => $first_name, 'last_name' => $last_name, 'telephone' => $telephone, 'email' => …

Read more