Unfortunatelly, this is don't solve my problem: https://yadi.sk/i/oQAukdXLizBnQ Support of vk.com tell me how to solve this problem: "When you call a method that allows to obtain the path to the photo, send the setting: https=1"
Hi, You can fix it on your wordpress installation (we will fix it in our plugin). 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);
Hi, Thanks! Indeed, the https photos links are different to the http ones, so our fix does not work. We're going to fix this shortly, thanks to your link to the extra parameter.
Answers
You can fix it on your wordpress installation (we will fix it in our plugin).
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.
Thanks!
Indeed, the https photos links are different to the http ones, so our fix does not work.
We're going to fix this shortly, thanks to your link to the extra parameter.
Regards
Just to confirm: does this work now?
Thanks.