Hi, Hum, the mail.ru API seems to give the http links to pictures. We do not see a way to specify https links for now... You can try to fix it on your wordpress installation. 1. open the file plugins/oa-social-login/includes/user_interface.php: 2. locate the lines (around line 639):
if ($user_picture !== false AND strlen (trim ($user_picture)) > 0)
{
3. Insert the following code immediately after the previous lines:
if ($user_picture !== false AND strlen (trim ($user_picture)) > 0)
{
$user_picture = str_replace('http:', 'https:', $user_picture);
Answers
Hum, the mail.ru API seems to give the http links to pictures. We do not see a way to specify https links for now...
You can try to fix it on your wordpress installation.
1. open the file plugins/oa-social-login/includes/user_interface.php:
2. locate the lines (around line 639): 3. Insert the following code immediately after the previous lines:
Regards.