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

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -