Gravity Forms Custom Templates [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question Im trying to further customise my Gravity Forms “Address” labels. At the moment they read “Street Address”, “City” and “ZIP / … Read more

Saving images from Gravity Forms repeatable File Upload as post attachments [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I am trying to upload multiple images as attachments to a post using Gravity Forms and the Gravity Forms + Custom … Read more

How to get the Gravityform entry ID from current user’s form submission? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question Case: When a user submits a (Gravity)form, the plugin automatically generates an unique entry ID for that specific form. In my … Read more

Delete the original big size image after upload and leave only 3 images crunched by media gallery

I need to know is it possible to somehow erase the original image uploaded via Gravity form : post image – post field?! With the situation now I receive 4 images. 1 original (can be whatever user has on his PC – up to 4 MB which clutters the server) and 3 which WordPress creates … Read more

gravity forms : use previous dropdown choice as variable in gform_pre_render? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I have a question regarding gform_pre_render? I have dealer form. Which basically you choose your county, and then your dealer. Dropdown … Read more

Can an action callback prevent the parent from continuing execution?

I’m working on a plugin that interacts with Gravity Forms, and under certain conditions I want to prevent a form from being deleted. Here’s the method in Gravity Forms that handles deleting a form: public static function delete_form($form_id){ global $wpdb; if(!GFCommon::current_user_can_any(“gravityforms_delete_forms”)) die(__(“You don’t have adequate permission to delete forms.”, “gravityforms”)); do_action(“gform_before_delete_form”, $form_id); $form_meta_table = self::get_meta_table_name(); … Read more

How do I show data from gravity forms in my template? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question Preface I’ve installed gravity forms, created a form and users are submitting data to my site. What I want to do … Read more