Hi
I was having problems with gravatars in a site using Technews, once I switched to https instead of http, and I tracked this down to line of code below, in the html/com_content/article/default.php file. It seems you have changed the way the template calls up the gravatar slightly, as previously you avoided using the http or https protocols. See your post here: https://www.gavick.com/blog/integrating ... ith-joomla
I have resolved the issue by adding that little s, but I would like to avoid update problems with this through an override. I have only used the CSS override so far, so I'm wondering how to proceed?
<img src="http://www.gravatar.com/avatar/<?php echo md5(strtolower(trim($author_obj->email))); ?>?s=80" alt="" />
Thanks