This page is no longer being maintained. Check out these instead:
Extensions for the awesome Beaver Builder plugin for WordPress
Modules to add to your theme or plugin
- ZestSMS Map
- SW PushMenu Module
- SW Social Share Module
- SW Responsive Tables Module
- SW Custom Footer Module
- SW Countdown Module
- SW PDF Viewer Module
- SW Hover Card Module
- SW Tooltip Module
- SW Gallery Module
These are additional settings field types to use in your custom modules.
- Fotoplugins Modules Plugin
- SW Beaver Builder Resizer
- ZestSMS Field Types Bundle
- BB Templates as Headers
- Beaver Builder TinyMCE Advanced Icon Fix
Also see the Beaver Builder Team's Recommended Plugins List for common helpful plugins that work well with Beaver Builder.
Have you designed a layout you'd like to share? Shoot me a link!
Know of a free or premium theme with great Beaver Builder support? Send me the link!
How to check if a page is using a builder layout:
<?php
// Include this function in functions.php of your theme.
function is_builder_layout() {
if (class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_enabled()) return true;
return false;
}
// Inside page.php, single.php, or singular.php use is_builder_layout() to determine what kind of layout to display.
if (is_builder_layout()) {
// big wide open edge-to-edge space for builder to use.
} else {
// default page layout, two column w/ sidebar maybe? Go nuts.
}
?>
How to default new pages to use Beaver Builder instead of the WordPress Editor.
function make_beaver_builder_default_editor( $post_ID, $post, $update ) {
// Enable BB Editor by default?
$enabled = true;
// On the first insert (not an update), set BB enabled to true.
if (!$update) {
update_post_meta( $post_ID, '_fl_builder_enabled', $enabled );
}
}
add_action('wp_insert_post', 'make_beaver_builder_default_editor', 10, 3 );
There is also a nice collection of CSS Snippets for the BB Plugin and CSS Snippets for the BB Theme on the knowledge base
Hope this was helpful! If you have suggestions for modules/layouts/themes/plugins/snippets feel free to send them to me as ticket or message me on the Beaver Builder Slack team @brentjett!