Integrating your avatar & to get the UserPro profile link to theme comments

Each theme is different but often you have a comments.php file, open that file.

First to integrate your avatar, change this

print '';

To:

echo get_avatar($comment,60);

To get the UserPro profile link change get_comment_author_link() to:

global $userpro;
echo ".userpro_profile_data('display_name', $comment->user_id).";

Was this article helpful?

Related Articles

Leave A Comment?