Wordpress Multisite and SSL

I have a multisite with subdirectories and an SSL. I cjanged the options tables for the main site and one subsite, but the ssl is only registering for the main site. I even checked the “Update siteurl and home as well” option. If it physically type https then the site registers and no insecure flag is shown on the checkout page, but the little lock doesnt display and it says the site isnt totally secure. How can I get it situated?

https://www.kickinkaratesystems.com/
https://www.kickinkaratesystems.com/akitournament/

I just saw in Chrome Console that its the webfonts being served by http that seem to be the culprit…
The page at https://www.kickinkaratesystems.com/akitournament/ displayed insecure content from http://www.kickinkaratesystems.com/akitournament/wp-content/themes/striking/fontfaces/Nobile-fontfacekit/nobile_bold-webfont.svg.

Any thoughts?

83,

Any thoughts? Just that SSL is only enabled for the domain (www’d version included) specified in its certificate. Then if you’re enforcing https only for critical pages and http for non-critical, the relative links to css, js, images will be considered “non-critical” and will cause the warnings you’re seeing. Similar situation in another recent post in Server Configuration.

Regards,

DK

You can redirect all the requests to the http site to the https://…

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Try the plugin “WordPress HTTPS”