Save and Continue Location

Hi Everyone,

I have a request from a client to inquire of adding a 2nd ‘Save and Continue’ link on the form, I know by default it is added to footer near the next or submit button, but I was wondering if there was a way to add it to another location on the form (near the top if possible) or adding 2nd Save and Continue link.

Thanks!

Ken

Hi Ken. I came up with something hard-coded which works. You can add an HTML field to the form, and then past this script into it:

<script>
  jQuery(document).on('gform_post_render', function(event, form_id, current_page){
    jQuery('#gform_save_390_footer_link').clone().appendTo('.gform_heading').prop('id', 'gform_save_390_header_link');
  });
</script>

Change the 390 to your form ID in two places. That created an additional “Save and Continue” link right after the form header. Here’s what it looks like on my form:

1 Like