Hi Ryan,
Same problem here. Until the plugin is updated, you can change the plugin yourself to get this functionality. What this “hack” does is look for “http:” (case insensitive) and change that to “https:” in the image link urls.
On line 808 in linkedin-company-updates.php under plugin root, change
$update_image_url = $shared_content['submittedImageUrl'];
to
$update_image_url = preg_replace("/^http:/i", "https:", $shared_content['submittedImageUrl']);
Hope that helps!
Best Regards,
Vibban
-
This reply was modified 7 years, 11 months ago by vibban.