How to Change Default Anonymous Avatar in Blogger Comments
Earlier, you've seen how you can change the size of the avatars in blogger comments and now I will show you how to change or customize the default avatar of anonymous commenters or Blogger users with no picture on their profiles. While Blogger announced the new threaded commenting system, we can still customize it by adding a jQuery plugin to our template and then replace the default anonymous avatar that can be found on this address: http://img1.blogblog.com/img/anon36.png and the one for blogger users: http://img2.blogblog.com/img/b36-rounded.png ...with our own.
Step 1. Go to Dashboard - Template - click on the Edit HTML button
...click anywhere inside the code area and open the template search box by pressing the CTRL + F keys
Step 2. Type or paste this code in the search box, then hit Enter to find it:
For Blogger users: Replace the URL in blue with your own.
You can choose an avatar from here and then copy the url of it:
That's it! If you found this trick useful, please consider sharing it.
Replace the Default Anonymous Avatar on Blogger Comments
Step 1. Go to Dashboard - Template - click on the Edit HTML button
...click anywhere inside the code area and open the template search box by pressing the CTRL + F keys
Step 2. Type or paste this code in the search box, then hit Enter to find it:
</body>Step 3. Just above the </body> tag, add the following code:
<script src='http://code.jquery.com/jquery-latest.js'/>Step 4. Save the changes by clicking on the Save Template button
<script>
$("img[src='http://img1.blogblog.com/img/anon36.png']")
.attr('src', 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNq2TAUl9JZdmKZ-3Vppz6J7hNwIidIRBoGJ-2UiTHyVnfxj0t8Kr7jwrqhhs0lPeA7LcyrUlfF6f8Psw079T7Ff1q6op2QO9wnF-c6OzGEHyERxbRZdyVkAABBGyFAq5GwQxjWwR8yzA/s1600/default_avatar.gif')
.ssyby('blank')
</script>
<script src='http://code.jquery.com/jquery-latest.js'/>
<script>
$("img[src='http://img2.blogblog.com/img/b36-rounded.png']")
.attr('src', 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiT5bxC8wBj7-ro7EuNwhMvWCODfLlL3Szs975XSTnabo_iOi76wYX8uYFpcm7I-r6R3TJUUT7YzTT9XmRxqmbdIpcOyEDoxku1Ltfim_FKMmPKUfnQ7o0Dry09JN9G8L3WBr0MoBvq7mI/s1600/blogger-user.png')
.ssyby('blank')
</script>
Changing the default avatar
For Anonymous users: Replace the code in red with your image addressFor Blogger users: Replace the URL in blue with your own.
You can choose an avatar from here and then copy the url of it:
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNq2TAUl9JZdmKZ-3Vppz6J7hNwIidIRBoGJ-2UiTHyVnfxj0t8Kr7jwrqhhs0lPeA7LcyrUlfF6f8Psw079T7Ff1q6op2QO9wnF-c6OzGEHyERxbRZdyVkAABBGyFAq5GwQxjWwR8yzA/s200/default_avatar.gif
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMMPZ4CqMg1mzI-muJq67Wi_mnbk67vrxti7eeHzDLpJNHBqIbExsf25OxKZVVFLaYrp026Vobz4_F2C1gCxn3-3590KUzWpXhhWGfIZPpueKbge8OLJ3I4wcNxKudbEwGysu1ndzFlkY/s1600/facebook.gif
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMBvghOTJ1MvaovC4kJRhq928geBdSmz83cAYca5SflQ7rppUS3LElcv6mc1tAuRNBY6HLnDINaJiKiv1_5egZ0MOrXXd3pKuB1fBBWlzRekv3m3A4it_VgtM2JdVMINm-t373W371-Ic/s1600/anonymous3.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8qkH-b_UbwPU8uJDz0xMo2-l7efcwaVQ4-9tTtjAEn0AOXeYKKtvZTXalKzd9yhFFQSn7ZlEXYSBqNmUotQ0fW9JIkUJ4pYnxRZ3TB1aCbJw9jUnDl6MLd4cxIgHkpZzeeFwUzsndb6_l/s1600/blogger-user.png
That's it! If you found this trick useful, please consider sharing it.
Post a Comment