Skip to content

Instantly share code, notes, and snippets.

@timersys
Created November 17, 2022 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timersys/ea173c33867cd9c93feb80dd8600cf28 to your computer and use it in GitHub Desktop.
Save timersys/ea173c33867cd9c93feb80dd8600cf28 to your computer and use it in GitHub Desktop.
Disable builder integrations with GeotargetingWP plugin
<?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