plugin_id = 'jucra-acf-google-maps-for-divi/index.php'; $this->init_hooks(); } /** * Hook methods to WordPress * * @return void */ public function init_hooks() { add_filter( 'et_builder_enable_jquery_body', [ $this, 'maybe_disable_jquery_body' ], 10, 2 ); } /** * Disable JQuery Body feature when showing a map * * @since 4.10.5 * * @param bool $enabled Whether the feature should be enabled or not. * @param string $content TB/Post Content. * * @return bool */ public function maybe_disable_jquery_body( $enabled, $content = '' ) { if ( empty( $content ) ) { return $enabled; } // disable when the shortcode is found. return false === strpos( $content, 'jucra_acf_map' ) ? $enabled : false; } } new ET_Builder_Plugin_Compat_Jucra_ACF_Maps();