@reinforcez,
the link given by @drakedoc was started over 4 years. Many solutions are given in this thread, and the last one was published a year ago.
That solution works for 1.9 and above !
/* Skip the Gravatar check when using a default BP avatar */
add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' );
By the way you have also to modify the global WP setting of avatars to “mystery man” or “nothing”.
Another solution to avoid gravatars slowing down a big site (at least > 500 members), is to use a specific cache plugin like Nix Gravatar Cache. Complete list here.
i see should i put that on bp-custom ?
and can i also change default avatar ?
i have bp-custom.php file with this code
<?php
define ( 'BP_AVATAR_DEFAULT', 'http://www.akashiro.web.id/ava1.jpg' );
define ( 'BP_AVATAR_DEFAULT_THUMB', 'http://www.akashiro.web.id/ava2.jpg' );
?>
is it still working ?`
bp-custom.php or your child-theme functions.php
> is it still working ?
How can we know that if you don’t try it first ? 😉
ah yes i change it to child theme functions and its working . thanks a lot danbp .
its all solved now .