-
Henry Wright replied to the topic Profile picture to use wordpress avatar in the forum Installing BuddyPress 10 years, 2 months ago
Hi @tightflks
You can use
get_avatar()
instead of the BuddyPress functionbp_core_fetch_avatar()
. See: https://codex.wordpress.org/Function_Reference/get_avatar -
Henry Wright replied to the topic [Resolved] Redirect users to buddypress profile edit page after sign up in the forum Installing BuddyPress 10 years, 2 months ago
Hi @tightflks
Try adding this to your theme’s functions.php file:
function my_signup_redirect( $user_id, $user_login, $user_password, $user_email, $usermeta ) {
wp_redirect( home_url() . '/members/' . $user_login . '/profile/edit/group/1/' );
exit();
}
add_action( 'bp_core_signup_user', 'my_signup_redirect', 10, 5…
@tightflks
Active 10 years, 2 months ago