Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save phillipwilhelm/701945ed974d9ac976555322652803ee to your computer and use it in GitHub Desktop.
Save phillipwilhelm/701945ed974d9ac976555322652803ee to your computer and use it in GitHub Desktop.
Gravity Wiz // Gravity Perks // GP Nested Forms // Customize the Modal Size
<?php
add_filter( 'gpnf_init_script_args_508_2', 'my_nested_forms_args' );
function my_nested_forms_args( $args ) {
$args['modalWidth'] = 900;
$args['modalHeight'] = 900;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment