Why is EasyBlog not adding https:// to the image as it should? I have never seen a link start with //www? This is not a sitemap issue, easyblog is not generating the link correctly and Google Webmaster Tools is proving it. I need to have https added to the front of //www to get rid of these errors.
Firstly, i would like to clarify that you never seen a link start with //www or //site.com without protocol before, it doesn't mean that other domain webpage didn't use this method
Protocol Relative URLs to populate their link on the site.
The reason why we use this method
Protocol Relative URLs to populate image is because we do not want to store these protocol with the link from the blog content into database to prevent this following issue.
All these will caused these following warning on the site and affected with the SEO as well.
“This page contains both secure and nonsecure items” or “This page has insecure content.”. This happens when we are viewing a HTTPS site and some content on the site is loaded from HTTP.
This warning message is very common, when someone try to view a site let said
https://www.mysite.com and we get this above warning message, that means some of the content (link) on the site is getting loaded from a non https site, like
http://www.oneoftheexample.com.
These warning messages can be fixed by using protocol relative URLs.
Imagine if the page content having this following code to populate one of the image under this domain site
https://example.com.
[gist type="php"]
<img src="//
http://www.site.org/images/example.jpg" />
[/gist]
So this image link will automatically convert to use https:// (
https://www.site.org/images/example.jpg) to populate this image on the site without hitting any warning message as what i described at above.
Imagine if the page content hardcoded that image link on this domain site
https://example.com.
[gist type="php"]
<img src="
http://www.site.org/images/example.jpg" />
[/gist]
So this image link unable to automatically convert this
http to https, so it will caused this warning message.
By the way, regarding with your current issue, Google Webmaster tool shouldn't return you any warning message regarding this if you re-submit again with your sitemap. Because if you access this sitemap link again :
[gist type="php"]
https://www.deermeadowshomehealth.org/index.php?option=com_jmap&view=sitemap&format=images&xslt=1
[/gist]
You no longer see any image link without protocol now is because my colleague Fadhli already help you turn off that 'Cropping image' setting from that Easyblog latest blog post module, so it will populate those image link on the page using
img tag instead of use CSS
background: url(//site.com/images/example.jpg).
By the way, keep us update if Google webmaster tool still return you those error after you re-submit your sitemap.