Forum Replies Created
-
AuthorPosts
-
cutcopypaste
MemberI fixed it with this code:
add_action( 'genesis_after_header', mysite_bpress_sidebars' ); function mysite_bpress_sidebars(){ if( get_post_type() == 'bp_members' ){ remove_action( 'genesis_sidebar', 'genesis_do_sidebar' ); dynamic_sidebar( 'Members Widget' ); } else if( get_post_type() == 'bp_group' ){ remove_action( 'genesis_sidebar', 'genesis_do_sidebar' ); dynamic_sidebar( 'Groups Widget' ); } }
cutcopypaste
MemberThank you for the suggestion. I'm looking for a simple way with code since that's where my other widget assignments are.. I don't want to have some in the database and some in the php..
cutcopypaste
MemberGot them showing up with the help of:
and
rebuilding my permalinkscutcopypaste
MemberAh looks like I'm not supposed to worry about BuddyPress Connect past 1.7. NBD
cutcopypaste
MemberSome other things I ran into:
.home-page class is no longer there. it's now just .home
site inner doesn't have a wrap by default.. it has .content-sidebar-wrap now
cutcopypaste
MemberI figured it out :p
add_theme_support( 'genesis-html5' )
is now
add_theme_support( 'html5' )Didn't catch that when I skimmed for changes.
Are there any other changes like this I may want to be aware of?
cutcopypaste
MemberHm I don't have header section under appearance.
Under Genesis theme settings I have a header section that lets me choose Image logo or dynamic text, but not both
-
AuthorPosts