Custom Nav Styling Not Working After Adding Theme Support for BP
-
Thanks to @djpaul and @r-a-y, i got my custom BuddyPress templates to load by adding theme support from this post.
But now that the templates are loading properly, the BuddyPress nav and subnav bar (which were looking fine before) has lost its custom styling (after adding theme support for BuddyPress). As a long shot, I tried adding
wp_dequeue_style( 'buddypress' )
, and thenwp_enqueue_style( 'buddypress' )
to the same function but it didn’t work.function my_theme_setup() { add_theme_support( 'buddypress' ); // wp_enqueue_style( 'buddypress' ); // this didn't work to solve the nav bar styling issue // wp_dequeue_style( 'buddypress' ); // neither did this }
Would greatly appreciate any pointers on how to get the child theme’s custom styling back. Thanks.
WordPress 4.4.2
BuddyPress 2.1.2
- You must be logged in to reply to this topic.