Created
November 17, 2022 12:46
-
-
Save timersys/ea173c33867cd9c93feb80dd8600cf28 to your computer and use it in GitHub Desktop.
Disable builder integrations with GeotargetingWP plugin
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 this file in the wp-content/mu-plugins/ folder. If the folder doesn't exist simply create it. | |
* Uncomment the line for you builder and comment out the rest | |
**/ | |
add_filter( 'geot/deactivate_divi_integration', '__return_true' ); | |
//add_filter( 'geot/deactivate_beaver_integration', '__return_true' ); | |
//add_filter( 'geot/deactivate_elementor_integration', '__return_true' ); | |
//add_filter( 'geot/deactivate_fusion_integration', '__return_true' ); | |
//add_filter( 'geot/deactivate_gutenberg_integration', '__return_true' ); | |
//add_filter( 'geot/deactivate_vc_integration', '__return_true' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment