Hi @auditt
We don’t have a setting for this out-of-the-box.
However, the CSS of the MainWP Dashboard can be tweaked to either reveal the WP Admin sidebar to the left of the MainWP Dashboard, or to completely replace the MainWP Dashboard’s sidebar.
Try this to reveal WP Admin sidebar:
.mainwp-ui-leftmenu.mainwp-ui-page #adminmenuwrap,
.mainwp-ui-leftmenu.mainwp-ui-page #adminmenumain {
display: block !important;
}
.mainwp-ui-leftmenu .mainwp-content-wrap {
margin-left: 340px;
}
.mainwp-nav-wrap {
position: fixed;
left: 160px;
}
And this code to replace the MainWP Dashboard’s sidebar:
.mainwp-ui-leftmenu.mainwp-ui-page #adminmenuwrap,
.mainwp-ui-leftmenu.mainwp-ui-page #adminmenumain {
display: block !important;
}
.mainwp-ui-leftmenu .mainwp-content-wrap {
margin-left: 140px;
}
.mainwp-nav-wrap {
display:none;
}
You may need to adjust the colors of the WP Admin sidebar for better visibility.