How do you customize the BB’s Post Module from your child theme?
I am assuming that you are using the Grid layout and adding the social share icon below the content. Here is the full steps: Step 1: Create a folder “fl-builder” and a sub folder “modules” of “fl-builder” folder into your child theme folder. Create another new folder “custom-post-grid” and put this folder into “modules” folder. Step 2: Copy the “post-grid.php” file from bb-plugin/modules/post-grid/includes folder and put into yourchildtheme/fl-builder/moduels/custom-post-grid folder Step 3: Open the functions.php file…
How to hide the Presets tab from the customizer in the Beaver Builder theme?
Open your functions.php file and drop this small snippets at end of the file
|
1 2 3 4 5 6 7 |
add_action('customize_register', 'bbtheme_customize_remove_preset', 99); /** * Removing "Presets" section */ function bbtheme_customize_remove_preset( $wp_customize ) { $wp_customize->remove_section( 'fl-presets' ); } |
1. Codex about customize_register hook. 2. Codex about remove_section method
Creating full width horizontal sub menu bar on BB child theme
Step 1: Setup the Header Layout. Login to Dashboard Navigate to Appearance -> Customize Click on Header panel Click Header Layout Section Select Nav Centered from Layout drop down Click on Save&Publish button Step 2: Adding the CSS in style.css file
