Group Mods

  • Profile picture of @mercime
  • Profile picture of r-a-y
  • Profile picture of Hugo

1.5 Group Avatars using Mystery Man Default? (8 posts)

Started 8 months ago by: Nahum

  • Profile picture of Nahum Nahum said 8 months ago:

    Are the default group avatars supposed to be using Mystery Man? I thought it was Identicons before? Is there a new setting to control this?

  • Profile picture of sheffieldlad sheffieldlad said 8 months ago:

    The setting is in wordpress under discussion I believe

  • Profile picture of Nahum Nahum said 8 months ago:

    Yea, I don’t think that was required before because that affects the member avatars too. but I did try that setting and it didn’t work.

  • Profile picture of sheffieldlad sheffieldlad said 8 months ago:

    give me 5 mins to get my install back up and running and I’ll try to point you in the right direction :)

  • Profile picture of sheffieldlad sheffieldlad said 8 months ago:

    In my version 1.2.10 it’s under general settings for buddypress.
    my 1.5 installation fell over so I’m not sure where it is in 1.5 but if I can get 1.5 up and running I’ll re post and tell you the location.

    I had Identicon avatars running on 1.5 so I know there is a setting, I just can’t remember where it is in 1.5 :/

  • Profile picture of sheffieldlad sheffieldlad said 8 months ago:

    In my version 1.2.10 it’s under general settings for buddypress.
    my 1.5 installation fell over so I’m not sure where it is in 1.5 but if I can get 1.5 up and running I’ll re post and tell you the location.

    I had Identicon avatars running on 1.5 so I know there is a setting, I just can’t remember where it is in 1.5 :/

  • Profile picture of r-a-y r-a-y said 8 months ago:

    You can throw in the following code in your /wp-content/plugins/bp-custom.php file:

    function my_group_avatar_default() {
    	global $bp;
    	// change 'identicon' to anything listed here:
    	// http://en.gravatar.com/site/implement/images/#default-image
    	$bp->grav_default->group = 'identicon';
    }
    add_action( 'bp_init', 'my_group_avatar_default' );
  • Profile picture of Nahum Nahum said 8 months ago:

    @r-a-y that works. tx