└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Not The Droids You're Looking For 2 | This page is no longer being maintained. Check out these instead: 3 | * [Knowledge Base - Developer Reference](http://kb.wpbeaverbuilder.com/category/108-developer-and-reference) 4 | * [Awesome Beaver Builder / Lukecav](https://github.com/lukecav/awesome-beaver-builder) 5 | 6 | --- 7 | 8 | # Awesome Beaver Builder Extensions 9 | Extensions for the awesome [Beaver Builder](https://www.wpbeaverbuilder.com/) plugin for WordPress 10 | 11 | ## Table Of Contents 12 | * [Modules](#modules) 13 | * [Custom Field Types](#custom-field-types) 14 | * [Add-on Plugins](#add-on-plugins) 15 | * [Layouts](#layouts) 16 | * [BB-friendly Themes](#beaver-builder-friendly-themes) 17 | * [Common Snippets](#common-snippets) 18 | 19 | ## Modules 20 | Modules to add to your theme or plugin 21 | 22 | * [ZestSMS Map](https://github.com/ZestSMS/BB-Override-Modules) 23 | * [SW PushMenu Module](http://fotoplugins.com/downloads/responsive-off-canvas-menu/) 24 | * [SW Social Share Module](http://fotoplugins.com/downloads/sw-social-share/) 25 | * [SW Responsive Tables Module](http://fotoplugins.com/downloads/sw-responsive-tables/) 26 | * [SW Custom Footer Module](http://fotoplugins.com/downloads/sw-custom-footer/) 27 | * [SW Countdown Module](http://fotoplugins.com/downloads/sw-countdown-module/) 28 | * [SW PDF Viewer Module](http://fotoplugins.com/downloads/sw-pdf-viewer-module/) 29 | * [SW Hover Card Module](http://fotoplugins.com/downloads/sw-hover-card-module/) 30 | * [SW Tooltip Module](http://fotoplugins.com/downloads/swtooltip-module/) 31 | * [SW Gallery Module](http://fotoplugins.com/downloads/sw-gallery-module/) 32 | 33 | ## Custom Field Types 34 | These are additional settings field types to use in your custom modules. 35 | * [PDF Field Type](https://github.com/ZestSMS/BB-PDF-field) 36 | * [Date Picker](https://github.com/ZestSMS/BB-fields) 37 | * [Location](https://github.com/ZestSMS/BB-fields) 38 | * [Time Picker](https://github.com/ZestSMS/BB-fields) 39 | * [Time Range](https://github.com/ZestSMS/BB-fields) 40 | * [Post Select](https://github.com/ZestSMS/BB-fields) 41 | * [Select2 Drop-Down](https://github.com/ZestSMS/BB-fields/tree/master/fields/select2) 42 | 43 | ## Add-On Plugins & Libraries 44 | * [Fotoplugins Modules Plugin](http://fotoplugins.com/downloads/fotoplugins-beaver-builder-modules/) 45 | * [SW Beaver Builder Resizer](http://fotoplugins.com/downloads/sw-beaver-builder-resizer/) 46 | * [ZestSMS Field Types Bundle](https://github.com/ZestSMS/BB-fields) 47 | * [BB Templates as Headers](https://github.com/jatacid/bb-template-as-header/) 48 | * [Beaver Builder TinyMCE Advanced Icon Fix](https://github.com/r3df/r3df-beaver-builder-tinymce-advanced-icon-fix) 49 | 50 | Also see the Beaver Builder Team's [Recommended Plugins List](https://www.wpbeaverbuilder.com/knowledge-base/recommended-plugins/) for common helpful plugins that work well with Beaver Builder. 51 | 52 | ## Layouts 53 | Have you designed a layout you'd like to share? Shoot me a link! 54 | 55 | ## Beaver Builder-friendly Themes 56 | Know of a free or premium theme with great [Beaver Builder](http://www.wpbeaverbuilder.com) support? Send me the link! 57 | 58 | ## Common Snippets 59 | 60 | How to check if a page is using a builder layout: 61 | ```php 62 | 76 | ``` 77 | 78 | How to default new pages to use Beaver Builder instead of the WordPress Editor. 79 | ```php 80 | function make_beaver_builder_default_editor( $post_ID, $post, $update ) { 81 | 82 | // Enable BB Editor by default? 83 | $enabled = true; 84 | 85 | // On the first insert (not an update), set BB enabled to true. 86 | if (!$update) { 87 | update_post_meta( $post_ID, '_fl_builder_enabled', $enabled ); 88 | } 89 | } 90 | add_action('wp_insert_post', 'make_beaver_builder_default_editor', 10, 3 ); 91 | ``` 92 | 93 | There is also a nice collection of [CSS Snippets for the BB Plugin](https://www.wpbeaverbuilder.com/kb/css-snippets-plugin/) and [CSS Snippets for the BB Theme](https://www.wpbeaverbuilder.com/kb/css-snippets-theme/) on the [knowledge base](https://www.wpbeaverbuilder.com/knowledge-base/) 94 | 95 | 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](http://beaverbuilders.slack.com) @brentjett! 96 | --------------------------------------------------------------------------------