Problem Implementing parallax in header of bp-default theme

First off — When including Javascript, use a function hooked to the init action in functions.php. See: http://scribu.net/wordpress/optimal-script-loading.html Secondly — The CSS for the BP bar is being effected by something in your theme. If fixing how your Javascript is loading first doesn’t fix that issue, try selecting that object in Firebug (Or Chrome’s developer … Read more

how to list all subdomain in wordpress multiuser

take a look at this plugin : Multi-Site Site List Shortcode or if you prefer a snippet then: $blog_list = get_blog_list( 0, ‘all’ ); if (count($blog_list) > 1){ echo ‘<ul>’; foreach ($blog_list AS $blog) { echo ‘<li>Blog ‘.$blog[‘blog_id’].’: ‘.$blog[‘domain’].$blog[‘path’].'</li>’; } echo ‘</ul>’ }

Conditional tags to differentiate between profiles and activity with buddypress [closed]

Your problem may be the choice of bp_is_user_profile(). This only returns true when you are literally looking at the xprofile component – the ‘Profile’ tab of a user’s page. bp_is_user() is more general, returning true whenever you’re viewing a user page (even if it’s user activity, user groups, etc). [EDIT] After further discussion with the … Read more