Hi,
I have the same issue. Because BuddyBoss is adding the bp-nouveau class to the body as the first item, Elementor is using that as the site’s full-width-template class.
I had a look in custom-bp file but there is nothing about classes there.
I’ve been trying to remove the .bp-nouveau via the WP filter in the child theme’s function.php:
add_filter('body_class', function (array $classes) {
if (in_array('bp-nouveau', $classes)) {
unset( $classes[array_search('bp-nouveau', $classes)] );
}
return $classes;
});
but that’s not working.
I have also tried via jQuery in the WP footer to removeClass but that didn’t work either.
1. Is there a way to remove the bp-nouveau class from the body tag on certain pages?
2. Is there a way to move the position of the bp-nouveau class to the end of the body tag?
Perhaps moving it to the end of the body tag would be the best solution in order to avoid any knock on effects?
I’d rather not start loading a different theme, and if I did I would probably load a default WordPress one for testing purposes. OceanWP is said to be compatible with BuddyPress, it’s listed on the BuddyBoss site.
I did actually start my question off with ‘Even though the Customizer settings are set to Horizontal for both Group and Profile, the member and group directory pages are still showing with the nav vertical.” So your video link does not help.