Save file.
2. Open up your theme’s sidebar.php and Save As > sidebar-buddypress.php. Open up sidebar-buddypress.php and make the following revisions:
a) at the very top of the file before all other code, add:
`
I’m new to the whole Buddypress thing so bear with me. I did a google search and couldn’t find a working answer. I’m missing the profile settings page (I get a 404 page). When I was clicking around the dashboard disabling old plug-ins I saw a repair option for it. I accidently refreshed and haven’t seen the option since : /
How would I go about setting this up, since everything else works? Thanks for patience for another noob question.
Hello to All,
I want to make my BuddyPress like this here:
http://img847.imageshack.us/img847/1580/32098510.png
Is this some plugin?
Thank You!
I need to be able send posts and replies between friends and have them
remain private.
ASSUMPTIONS: User # 1 has 15 friends and User # 2 is a friend of User #1. User # 2 only has one friend, User# 1.
LEVEL 1 POSTS
I want to be able to have User #2 send a post directly to their friend User#1 but not have the friends of User #1 also see the post.
The same would also applies to reply().
LEVEL 2 POSTS
User # 1 can send public post only to their friends which cannot be seen by the COMMUNITY.
I’ve installed Friends Only Activity Stream
plugin by Sarah Gooding(@pollyplummer)
but all posts directed to a profile are seen by friends
of that profile.
This is a medical site so at times a user may need to send multiple PRIVATE posts without having to Compose a private message.
Hello,
I installed buddypress, buddypress template pack and bbPress. Everything seems to be running smooth just a few kinks to work out. I setup the main forum to be my index page. When you click through there is a breadcrumb trail that shows the current page you are on and previous pages. For instance Home>Forum>Forum Category. The “Forum” page is the forum archives which is the only page that looks messed up. Actually I don’t even think I need the page since my main forum is on the “Home” page. I am trying to figure out how to lose the Forum archive page in the breadcrumb trail. Any help would be appreciated. Thanks.
Tim.
I’ve been trying to use mobile on a network but the plugin has to be activated sitewide so it makes all subsites use the mobile version.
1. Is there a way to only activate this on the main site?
2. If activating sitewide, are there templates that can be modified on a site by site basis. Not all sites are set up the same, so they need specific mobile versions.
Hi!
I’m using wordpress with buddypress and the buddyboss skin to build a blog with a small community arround it.
I’m now having the problem that posts in the blog view won’t show pictures untless I read the “full article”.
Blog view: Hi!
I’m using wordpress with buddypress and the buddyboss skin to build a blog with a small community arround it.
I’m now having the problem that posts in the blog view won’t show pictures untless I read the “full article”.
Blog view: http://www.mytravelagent.eu/wordpress/
Full post: http://www.mytravelagent.eu/wordpress/2011/11/15/hello-world-2/
I would really appreciate it if someone could help me!
Thanks
Philipp
Full post: here
I would really appreciate it if someone could help me!
Thanks
Philipp
Is there a way of getting the BuddyPress version, like we can with WordPress using $wp_version?
Thanks.
Something really strange its happening on my buddypress. As soon as a new user register the field_1 (core field) that im using for First Name is getting overwrited with the username value.
On a existing user if i edit the profile the same things happens
To fix the problem i need to edit/save the field_1 in buddypress settings. Nothings seems to change on the database but for some reason it start working again .
So with my existing user im able to edit the First Name aswell.
Then someone register and the problem appears again.
The register page is the default one.
Lattest buddypress is installed.
Let me mention this is a WordPress Mu + Buddypress site.
Anyone find himself with the same problem??
Hi everybody,
How to change default avatar based on value of a field for user.
Example: Field name: Sex, Field value 1: male, Field value 2: female. When user change field value to male, display default avatar male (male.jpg) . When user change field value to female, display default avatar female (female.jpg).
I tried this code in file wp-content/plugins/buddypress/bp-core/bp-core-avatars.php
`
if ( !defined( ‘BP_AVATAR_DEFAULT’ ) )
{
if (bp_get_profile_field_data(‘field=sex’)==’male’)
define( ‘BP_AVATAR_DEFAULT’, BP_PLUGIN_URL . ‘/bp-core/images/male.jpg’ );
else if (bp_get_profile_field_data(‘field=sex’)==’female’)
define( ‘BP_AVATAR_DEFAULT’, BP_PLUGIN_URL . ‘/bp-core/images/female.jpg’ );
else
define( ‘BP_AVATAR_DEFAULT’, BP_PLUGIN_URL . ‘/bp-core/images/mystery-man.jpg’ );
}
`
but not work.
thanks.