Hi,
When using the “author avatar” element in a skin for a Twitter feed in The Grid, this image is loaded over http. This causes mixed content warnings on SSL websites. I have temporarily fixed this issue by editing line 498 of the file /includes/source-type/twitter.class.php, replacing it by:
'avatar' => isset($data->user->profile_image_url) ? str_replace('.jpg', '_200x200.jpg', str_replace('_normal', '', str_replace('http://', 'https://', (string)$data->user->profile_image_url))) : null
I have not managed to find another way to change this in the plugin, so I was wondering if you could report this issue to the plugin developer?
Thanks!