Viewing 2 replies - 1 through 2 (of 2 total)
  • vibban

    (@vibban)

    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 9 years ago by vibban.
    Thread Starter ryanllogan

    (@ryanllogan)

    Appreciate the info!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘HTTPS’ is closed to new replies.