-
aces replied to the topic What happened to these Buddypress Plugins? in the forum Third Party Plugins 10 years, 6 months ago
You could try putting the following in you child theme functions.php file
function bbg_enqueue_styles() {
remove_theme_support( 'bp-default-responsive' );
}
add_action( 'wp_enqueue_scripts', 'bbg_enqueue_styles', 5 );For more info ( including important details ) see:…[Read more]
-
@mercime replied to the topic Buddypress default theme in the forum Creating & Extending 10 years, 6 months ago
-
@mercime replied to the topic Upgraded and now nav and sidebar is responsive????? in the forum How-to & Troubleshooting 10 years, 6 months ago
@mr-bronze see Boone’s answer in the link Aces gave –
“call it *after* bp-default registers theme support (after_setup_theme, 10) and *before* the stylesheet is enqueued (wp_enqueue_styles, 10)”
@mr-bronze
Active 10 years, 6 months ago