Amit,
Sorry for the delay. It's a holiday weekend here in the states, so that slows things down.
Currently, the SCLogin module doesn't have an option to show the user's K2 avatar. If you make the change below though, it should show the K2 avatar. You'll need to test, obviously, and let us know how it goes.
Edit the /modules/mod_sclogin/helper.php file. Around line 250, you'll see:
function getSocialAvatar($registerType, $profileLink, $user)
{
$html = "";Simply add the following lines right after that:
$html = "";
require_once(JPATH_SITE.DS.'components'.DS.'com_k2'.DS.'helpers'.DS.'utilities.php');
return $this->getSocialAvatarImage( K2HelperUtilities::getAvatar($user->id) , '');
Again, test, and let us know how it goes!
Thanks,
Alex