├── README.md └── gravity-forms-multisite-settings.php /README.md: -------------------------------------------------------------------------------- 1 | ###Gravity Forms Multisite Global Settings Plugin 2 | 3 | This plugin lets you set Gravity Forms settings for an entire multisite. 4 | Once the settings are set, users of individual blogs can't override them. 5 | 6 | Install this plugin into the /wp-content/mu-plugins/ directory of your multisite, and then put this in your wp-config.php. 7 | 8 | 9 | ```php 10 | /* Global settings that will be active across the multisite */ 11 | define('GF_DISABLE_CSS', 0); 12 | define('GF_OUTPUT_HTML5', 0); 13 | define('GF_NO_CONFLICT_MODE', 0); 14 | define('GF_RECAPTCHA_PUBLIC_KEY', ''); 15 | define('GF_RECAPTCHA_PRIVATE_KEY', ''); 16 | define('GF_LICENSE_KEY', ''); 17 | ``` 18 | 19 | These settings will be set globally on all sites, both sites that are already created and future ones as well. 20 | -------------------------------------------------------------------------------- /gravity-forms-multisite-settings.php: -------------------------------------------------------------------------------- 1 |