Removing the full Schema There have a filter fl_post_grid_disable_schema in BB Post Module. You can easily disable the schema via this simple PHP code. add_filter( ‘fl_post_grid_disable_schema’, ‘__return_true’ ); Removing only Author Schema add_filter( ‘fl_schema_meta_author’, ‘__return_null’ ); Removing Publisher Schema add_filter( ‘fl_schema_meta_publisher’, ‘__return_null’ ); Removing Publish Date Schema add_filter( ‘fl_schema_meta_general’, ‘__return_null’ ); Removing Comments Schema add_filter(… Continue Reading
beaver builder
How to you overwrite the Beaver Builder modules from Theme
We already knew that we can overwrite the existing Settings Form fields and frontend.php file of a module via hooks. But sometimes we require to modify the other files like fronend.js.php, frontend.js and other inner files of a module as per the site requirement. We can do this without touching the core plugins (like BB,… Continue Reading
Creates Portfolio Custom Post Type in Beaver Builder Theme
How do you add a custom post type in your Beaver Builder theme without any plugin? I want to create a custom post type “portfolio” to showcase my work. I used the following PHP scripts in Beaver Builder Child theme. Register Custom Post Type “Portfolio” Open the class-fl-child-theme.php file from bb-theme-child/classes folder. Add the following… Continue Reading
Creating Beaver Builder Custom Module For Clients
Recently I got a client who was wanting a custom module for Beaver Builder plugin. Module was for banner or hero image section. So I built that module for him. I am sharing the details here. Here is the frontend output of that custom module. Settings Form of Banner Module 1. General From this tab… Continue Reading
Change the “Beaver Builder” text in the admin bar
Here is the simple PHP snippet which will replace the “Beaver Builder” text in all places with your custom text. Put the following PHP code into your theme’s functions.php file. I use the custom text “Paul Builder” in the code. You will replace it with yours one.
Creating Tabs Layout With Beaver Builder Pro
Importing The BB Templates At first I am importing the demo content. Later you can edit the content with live data. Here is the procedure: Download this zip file and extract it on your machine. You will get two XML files. You will import them on your site. Login to Dashboard Navigate to Tools ->… Continue Reading
Displays Multiple Post Types on BB Posts Module
Posts Module for Beaver Builder allows you to display any post type content from your WordPress site. Per module you select one post type content. In this tutorial I shall show how you will display the multiple post types content on single Posts Module. For example, I created a custom post type “event”. On my home page I… Continue Reading
Restrict the Editing Access of Certain Themer Layouts
Beaver Themer is an add-on of Beaver Page Builder plugin. This add-on lets you create layouts for archive pages, template an entire post type, 404 and search pages, and create parts like headers and footers. I create lot of themer layouts for my site. I want to restrict the editing access of only certain layouts… Continue Reading
Enabling Field Connection Option To The Id & Class Fields
How do you add field connection option to the Id and class fields under Advanced tab of any settings forms (module, row and column)? I am sharing the small PHP snippet which will enable the connection option. So you can put the custom field key there and control the value from the post,page,cpts add/edit screen or theme… Continue Reading
Fixing JS Conflict Issue between Older BB plugin & WP 4.9.6
This tutorial will show how you will resolve JS conflicting issue between older version of BB plugin & WP 4.9.6. If you are not renewing the license of Beaver Builder plugin then this trick will help you. But I shall recommend that you will stick with Beaver Builder plugin and renew/buy your own license. Here… Continue Reading