Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131

Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131
Custom Dashboard with Metabox – Code DPlugins

Custom Dashboard with Metabox

Great tutorial from John Aperture on how to create Admin Dashboard with Bricks and Metabox inspired by our previous tutorial Custom Dashboard with Visual Builders.

window.onload = function() {
   let myiFrame = document.getElementById("admin-sub");
   let doc = myiFrame.contentDocument;
   doc.body.innerHTML = doc.body.innerHTML + '<style>#wpadminbar{display:none!important} body{background-color:#f0f0f1}</style>';
}
.my-iframe{
    width: 100%;
    height: 200vh;
    overflow: hidden;
}

.admin-info .rwmb-label {
    display: none !important;
}
Click to Copy