Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Martin Tod

    (@mpntod)

    I’ve changed line 394 onwards from:

    $return .= "<img src='{$person['profile_image_url']}' alt='".esc_attr($person['name'])."' /></a>";
    endif;
    break;

    to:

    if(isset($_SERVER['HTTPS'])):
    	$return .= "<img src='{$person['profile_image_url_https']}' alt='".esc_attr($person['name'])."' /></a>";
    else:
    	$return .= "<img src='{$person['profile_image_url']}' alt='".esc_attr($person['name'])."' /></a>";
    endif;
    break;

    in the Development Version.

    Please let me know if that fixes the problem.

    Thread Starter Rupfe

    (@rupfe)

    Thanks Martin,

    The problem is fixed.

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

The topic ‘Site changes from secure to insecure’ is closed to new replies.