Skip to content

brentjett/awesome-beaver-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 

Repository files navigation

Not The Droids You're Looking For

This page is no longer being maintained. Check out these instead:


Awesome Beaver Builder Extensions

Extensions for the awesome Beaver Builder plugin for WordPress

Table Of Contents

Modules

Modules to add to your theme or plugin

Custom Field Types

These are additional settings field types to use in your custom modules.

Add-On Plugins & Libraries

Also see the Beaver Builder Team's Recommended Plugins List for common helpful plugins that work well with Beaver Builder.

Layouts

Have you designed a layout you'd like to share? Shoot me a link!

Beaver Builder-friendly Themes

Know of a free or premium theme with great Beaver Builder support? Send me the link!

Common Snippets

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!

About

Extensions for the Beaver Builder plugin for WordPress

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published