Redirect to post after submission with Gravity Forms? [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 How do I redirect to a post after submission with gravity forms. It gives you the option to put in query … Read more

Gravity Forms loading jquery

I placed the following script in my functions file to deregister WordPress jquery and use the Google CDN. // use the Google hosted jquery library if (!function_exists(‘modify_jquery’)) { function modify_jquery() { if (!is_admin()) { wp_deregister_script(‘jquery’); wp_register_script(‘jquery’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js’, false, ‘1.11.3’, true); wp_enqueue_script(‘jquery’); } } } add_action(‘init’, ‘modify_jquery’); I’m using Gravity Forms and it looks like on … Read more

Inserting Gravity Form checkbox values into Advanced Custom Fields [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’m trying to feed checkbox values from a Gravity Forms form (which creates a new post) into an Advanced Custom Fields … Read more

Get selected values from checkboxes and radio buttons via Gravity Forms gform_after_submission hook [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 6 years ago. Improve this question Gravity Forms offers a reasonably good documentation and of course Google offers more insights into how developers have solved other challenges … Read more

Best way to create multi-step form with data saved to user account for later updating?

I’m attempting to set up a fairly long multi-part form (~50 questions, a few questions per page) with conditional logic. I’d like to offer registered visitors the ability to save their data between each page/step and give them the option to return later to finish. I have Gravity Forms and thought that might work, but … Read more