We are away from the office until 18th October, 24. Our support system is closed now.

Premium add-on for Bricks Builder

Adds Admin Bar in Builder Editor

The Bricks builder removed the Admin bar from the builder editor. You can show it with this PHP code. Open the functions.php file of the Bricks child theme and drop the code.

add_action( 'init', function() {
	if( ! bricks_is_builder_iframe() && bricks_is_builder() ) {
		add_filter( 'show_admin_bar', '__return_true', 99 );
		add_action( 'wp_head', function() {
			echo "<style type='text/css'>
				body.admin-bar #bricks-panel, 
				body.admin-bar #bricks-preview, 
				body.admin-bar #bricks-toolbar {
					top: 32px!important;
				}
				#bricks-structure {
					top: 72px!important;
				}
			</style>";
		});
	}
});
Fills In: 

Leave the first comment

Search Tutorials

Request TutorialsFeatures Request