Created
September 5, 2016 04:42
-
-
Save phillipwilhelm/701945ed974d9ac976555322652803ee to your computer and use it in GitHub Desktop.
Gravity Wiz // Gravity Perks // GP Nested Forms // Customize the Modal Size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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