Bricks Builder Integration/Support
-
Hey. Any way or plans to integrate with Bricks Builder to create the templates?
Thanks!!
-
Hi @dariusdumitru ,
Thanks for your interest. If we hear more people asking for this, we will definitely look into it.
I was watching this topic.. I am interested in this as well, as I am testing many tools to figure out my ideal setup for elementor and bricks (not used at the same time of course)
Currently I know if I use White Label CMS it will only work with Elementor
Any news on this? If you could make it also for any page builder would be really awesome as more and more people move from Elementor. Thanks!
Adding Bricks Builder template for the dashboard would be very useful.
If anyone is interested, I did found a solution which involved custom code, and will work for any builder or page. I’ve used WPCodeBox, but you can use any code snippets plugin. Just create a new PHP snippet with this code:
<?php // Remove Dashboad Widgets function remove_dashboard_widgets(){ global $wp_meta_boxes; foreach( $wp_meta_boxes["dashboard"] as $position => $core ){ foreach( $core["core"] as $widget_id => $widget_info ){ remove_meta_box( $widget_id, 'dashboard', $position ); } } } add_action( 'wp_dashboard_setup', 'remove_dashboard_widgets', 1000000 ); // Load Dashboad Page function add_custom_page(){ echo '<iframe id="customDashboard" src="URL TO YOUR PAGE" title="description"></iframe>'; } add_action( 'wp_dashboard_setup', 'add_custom_page', 1000000 ); ?>
Then create a new CSS snippet and paste this code:
/*Custom Dashboard CSS*/ #customDashboard{ position: fixed; z-index: 10; top: 0; width: 100%; height: 100vh; padding-left: 160px; } .folded #customDashboard{ padding-left: 35px; }
I would also like this feature build-in into the plugin
support for brick template would be great
@videousermanuals is there a roadmap/idea board where we can vote?
I’d also like to have Bricks Builder support. I’ve been using your plugin for a while working with Elementor and now seems like I can’t find anything compatible with Bricks that works.We heard your request and we have added a new feature for you.
You can now use any page builder for the welcome panel by selecting a “Page” in Template Type option for your Custom Welcome Dashboard Panel.
To try this feature, please download the latest version of our plugin from this link: https://d.pr/f/p6KAtz.
Your feedback is very important to us, it will help us improve our plugin services to you.
Thanks in advance.
This is useless. Because you are simply placing a page into an iFrame you are not able to access any part of the administrative backend from the dashboard. all the links to access any of the areas in the admin area load inside the iFrame. Also as you can see I am not able to access any of the assets from WordPress, such as its Dashicons. Below is a link to a screencast of what is happening.
I built the same dashboard in Elementor Pro and because this was not in an iFrame I had no problem accessing areas in the admin.@jhayvum Do you have any comment regarding my last comment and issues I’ve run across using this solution for Bricks?
I found a solution to the opening inside iframe here: https://www.wyzant.com/resources/answers/621391/how-to-force-link-from-iframe-to-be-opened-in-the-parent-window
You just need to add target=”_PARENT” within that links anchor tag.
<a href=”https://www.google.com” target=”_PARENT”>Google.com</a>
- The topic ‘Bricks Builder Integration/Support’ is closed to new replies.