0
votes
1answer
68 views

How to update avatar in buddypress programmatically?

How to update avatar in buddypress programmatically? I have a script, which gets the image url and I want to update the url in the database, so that that image will will be avatar of the user.
0
votes
1answer
159 views

Subsite theme mystery man replacement with Buddypress on main site

I have a multi-site install with buddypress on the main site. In the buddypress theme I've been able to override the default 'mystery-man' avatar using my custom buddypress theme. I simply have an ...
1
vote
0answers
435 views

Why are BuddyPress user avatars not displaying properly?

I have a BuddyPress 1.6.x installation on WordPress 3.4.2. User avatars are not displaying in the following situations. On pages like: www.domain.com/members/USERNAME/profile/edit/group/1/ Here is ...
2
votes
1answer
97 views

How to remove unused avatar uploads in buddypress

Im seeing in my wp-content/uploads/avatars folder that there are tons of avatars from when I created test users, but changed the avatars. So, i’m assuming that even if the user changes their avatar, ...
0
votes
1answer
291 views

How to set the default avatar of buddypress avatar

I need a way to set the default avatar for buddypress's bp_core_fetch_avatar. Using the regular get_avatar you can just set the $default path but I can't find anyway to do it with buddypress's ...
0
votes
1answer
301 views

How do you remove the buddypress group avatar from the activity stream post?

When a member post to a group it shows up in the activity feed under “username posted an update in the group” then its followed by the group avatar then the group name. So I was wonder how I could ...
2
votes
1answer
859 views

How to override Member's Avatars in BuddyPress

I have tried everything to override the BP Avatar. Found about 5-6 different Google results that basically all point to the same solution: function override_bp_member_avatar($url) { return ...
2
votes
3answers
1k views

How to get larger version of author avatar

I am trying to incorporate author avatars into my posts by doing <?php echo get_avatar( get_the_author_meta('ID'), 150 ); ?> but I can't go larger than 50x50px without it getting stretched ...