HTTPS mixed content
-
Please fix the http profile pictures in https wordrpess sites, so sites won’t have mixed content.
In order to do this change your line on in the /js/jquery.tweetscroll.js from:
var profileImage = item.user.profile_image_url;
to:
var profileImage = item.user.profile_image_url.replace(/^http:\/\//mg, "//");
This replaces image urls that start with https:// to // which makes the browser use the protocol on which the site is fetched.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘HTTPS mixed content’ is closed to new replies.