| 1 |
<?php |
| 2 |
/** |
| 3 |
* Builder Plugin Compatibility Code |
| 4 |
* |
| 5 |
* @package Themify_Builder |
| 6 |
* @subpackage Themify_Builder/classes |
| 7 |
*/ |
| 8 |
|
| 9 |
/** |
| 10 |
* @link https://wordpress.org/plugins/events-made-easy/ |
| 11 |
*/ |
| 12 |
class Themify_Builder_Plugin_Compat_eventsmadeeasy { |
| 13 |
|
| 14 |
static function init() { |
| 15 |
if ( Themify_Builder_Model::is_front_builder_activate() ) { |
| 16 |
remove_action( 'wp_enqueue_scripts', 'eme_register_scripts' ); |
| 17 |
} |
| 18 |
} |
| 19 |
} |