dariusdumitru
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [White Label CMS] Bricks Builder Integration/SupportIf 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; }Forum: Plugins
In reply to: [White Label CMS] Bricks Builder Integration/SupportAny 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!
Forum: Plugins
In reply to: [Carousel Upsells and Related Product for Woocommerce] Padding top/bottomFor sure. Done!
Forum: Plugins
In reply to: [Carousel Upsells and Related Product for Woocommerce] Padding top/bottomIt works! Thanks a lot @alexodiy!!!
Viewing 4 replies - 1 through 4 (of 4 total)