Skip to content

Instantly share code, notes, and snippets.

@joshhartman
Last active July 5, 2022 21:23
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 joshhartman/dda0205cad5d99ccc235b73a7fad8629 to your computer and use it in GitHub Desktop.
Save joshhartman/dda0205cad5d99ccc235b73a7fad8629 to your computer and use it in GitHub Desktop.
Disable specific WordPress shortcodes when editing with Beaver Builder
<?php
// Disable specific WordPress shortcodes when editing with Beaver Builder
function shortcode_compatibility_bb_fix() {
if ( FLBuilderModel::is_builder_active() ) {
remove_shortcode( 'gravityform' );
remove_shortcode( 'fl_builder_insert_layout' );
}
}
add_action( 'wp', 'shortcode_compatibility_bb_fix' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment