Do give a cheaper unit price if more than 1 is purchased
Gravity Forms – Create new post from submission
Gravity forms hook gform_after_submission is executed at the end of the submission process (after form validation, the notifications and the entry creation) As such, this is the ideal hook to use to perform any actions that need to take place with the entry data – ie, feed data to a 3rd party application) As with […]
Gravity Forms – Extract Value from Multiselect
With Gravity forms multi select, the data is stored in an array and as such is not in a useable form if you are using rgar rgar is a gravity forms function that can be used to extract a specific property of an array without need to check if that property exists So if you […]
Gravity Forms – Populate Dropdown with Taxonomy Terms
The Gravity forms gform_pre_render filter is executed before the form is displayed and can be used to manipulate the form the prior to rendering the form. To limit the scope of your function to a specific form, append the form id to the end of the hook name. (format: gform_pre_render_FORMID) In this case, I am using […]