mixed content missing from wordpress media

Make sure your setting in admin > settings > general > WordPress Address & Site Address have https in there and not just http. Also, you will want to make sure if you have any static calls to images they include https. For that particular image it could be cached.

WordPress Multisite keeps redirecting to HTTPS

The reason why my website was still redirecting to HTTPS was because of a plugin. The plugin was disabled, by emptying the database cell which contains the “active plugins”, but still it was overruling every WordPress setting so it seemed. Every setting in wp-config.php which should overrule database settings or disabling/removing cache, didn’t worked out. … Read more

How to convert multisite subdomain from http to https

I like a simple, all-purpose htaccess to enable https on all site requests: RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] In addition, go into Network Admin, Sites, then Edit each site, then the Settings tab for each site. Change all occurences of http to https for your site. (Some plugins may have the … Read more