Unstick the Modal Footer
Instructions
See “Where do I put snippets?” in our documentation for installation instructions.
Code
Filename: gpnf-unstick-the-modal-footer.php
<?php
/**
* Gravity Perks // Nested Forms // Unstick the Modal Footer
* https://gravitywiz.com/documentation/gravity-forms-nested-forms/
*/
add_filter( 'gpnf_init_script_args', function( $args ) {
$args['modalStickyFooter'] = false;
return $args;
} );