Display avatar of user profile when logged in
I am trying to display user’s avatar/profile image when logged in, but when I use this: <?php global $current_user; get_currentuserinfo(); echo get_avatar( $current_user->ID, … Read more
I am trying to display user’s avatar/profile image when logged in, but when I use this: <?php global $current_user; get_currentuserinfo(); echo get_avatar( $current_user->ID, … Read more
in the codepad link you can find what I am using to edit profile from the front-end. http://codepad.org/QJjDEA7p The code is working (which … Read more
I am trying to replace WordPress comment author data: 1) Avatar (uploaded image instead of Gravatar) 2) Author link (link to author page … Read more
I have 10k users on my site and only around 1k of them are using custom avatars (through a shortcode avatar upload I … Read more
There’s gotta be a way. I have tried a bunch of different multisite sync plugins and they sync users and roles just fine … Read more
I saw a WP site that had users fill in their basic info and then it directed them to upload and Avatar. The … Read more
Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/HTML/CSS questions might be … Read more
I’ve been looking for a way to change the default Buddypress avatar for members, and have managed it, partially just using the simple … Read more
I want show the avatar user and username with this code. add_filter( ‘wp_nav_menu_objects’, ‘my_dynamic_menu_items’ ); function my_dynamic_menu_items( $menu_items ) { foreach ( $menu_items … Read more
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 … Read more