This is my first time using BuddyPress.
I’m currently using the CSS solution below to hide the sidebar and expand the main content area to full width. It’s a bit of a workaround, as I’d prefer to avoid loading the sidebar entirely. Open to cleaner or more efficient approaches if anyone has suggestions.
/* hide sidebar */
div.sidebar {
display:none;
}
/* change content area width to 100% */
div.content {
width:100%;
}