Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    Hi @gagnonconsulting,

    I did some troubleshooting on this since I had the same problem.
    In short: When you create a role in URE it will have a display name and a role ID. The role ID is added to the meta data of the user in the database. USC, on the other hand, will get the URE display name of the role instead of the ID. Which in some cases, e.g. if you used spaces or special characters in the display name, won’t match.

    The quick solution: Use the same display name and role ID in User Role Editor.

    Hope it helps! ??

    // Vibban

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