You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had this problem with a WP theme that happened to use this package. It took ages to trace it down.
There are three URLs in the library that have a hard-coded http: in, for example:
http://www.google.com/mapfiles/marker.png
This caused the page to fail the SSL certificate, making the site look insecure. The fix was simple: remove the http:
//www.google.com/mapfiles/marker.png
There is no need to "detect" whether SSL is in operation for the connection - just give the browser a schema-less URL and the browser will work that out for you.
detect if using https and use it instead of http://www.google.com
The text was updated successfully, but these errors were encountered: