Skip to content

Instantly share code, notes, and snippets.

@beaverbuilder
Last active February 7, 2018 23:04
Show Gist options
  • Save beaverbuilder/4c9ae5b139f8f5c8371c9a2ee76c3b3e to your computer and use it in GitHub Desktop.
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
<?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