Last active
February 7, 2018 23:04
-
-
Save beaverbuilder/4c9ae5b139f8f5c8371c9a2ee76c3b3e to your computer and use it in GitHub Desktop.
This snippet is used on the following knowledge base article - https://kb.wpbeaverbuilder.com/article/42-known-page-builder-incompatibilities
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 // do not copy this line, start with line 3 | |
add_action( 'wp_enqueue_scripts', 'bb_custom_enqueue_scripts', 99 ); | |
function bb_custom_enqueue_scripts(){ | |
if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) { | |
wp_dequeue_script( 'jelly.min' ); | |
wp_dequeue_script( 'file-upload' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment