Images uploaded in wordpress have http rather that https in URL -
when chrome developer tool on of web pages warning
"the page @ https://www.improvementskills.org/wordpress/whats-going-on-2/ displayed insecure content http://abim3.improvementskills.org/wordpress/wp-content/uploads/2013/08/run_chart2.png. www.improvementskills.org/wordpress/whats-going-on-2/:1"
i'm guessing because image urls have http rather https. whenever upload new images in wordpress gives http well. how go fixing this? thanks!
update: technique in comment below anti-pattern! use https. http://www.paulirish.com/2010/the-protocol-relative-url/
if can edit website's img tags, remove "http:" src.
bad
http://abim3.improvementskills.org/wordpress/wp-content/uploads/2013/08/run_chart2.png
good
//abim3.improvementskills.org/wordpress/wp-content/uploads/2013/08/run_chart2.png
this way, browser call image https when needed, , http otherwise.
Comments
Post a Comment