Hi,
don’t know if this will help you, but @imath published a quick fix intended for premium themes.
Original post here (sorry it’s in french): http://imathi.eu/2013/02/21/une-buddypress-1-7-theme-story/
Add this to the theme functions.php
<code>function quick_fix_bp_theme_not_1_7_ready() {
remove_action( ‘bp_after_setup_theme’, ‘bp_load_theme_functions’, 1 );
}
add_action( ‘after_setup_theme’, ‘quick_fix_bp_theme_not_1_7_ready’, 9 );</code>
To understand a little what’s going on with the new BP 1.7 theme compat idea, read here, even if it’s intended for plugins at least.
https://codex.buddypress.org/theme-compatibility/how-to-enjoy-bp-theme-compat-in-plugins/
Feedback would be greatly appreciated 😀
It removes the menu styles. it puts it in a bulleted list when code applied in themefunctions.php
@chouf1
the fix is for BuddyPress theme, not for WordPress themes 😉