- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
certificate was added to an existing magento shop v 1.9.x
front end does not accept ev ssl certificate
this might be caused due to mixed content on the frontpage but how to figure out which element is causing the conflict?
thanks for supporting
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Browser inspector console log usually display what elements are loaded using unsecure protocol.
The thing is that theme providers are not always the most sharpest tools in the box and sometimes hardcode the protocol (such as http://) to the resources they load (images, fonts, css files and whatnot) to their files. To fix it replace http:// in templates and css files with https:// or even better, use // and allow browser to choose protocol itself.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Browser inspector console log usually display what elements are loaded using unsecure protocol.
The thing is that theme providers are not always the most sharpest tools in the box and sometimes hardcode the protocol (such as http://) to the resources they load (images, fonts, css files and whatnot) to their files. To fix it replace http:// in templates and css files with https:// or even better, use // and allow browser to choose protocol itself.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: EV SSL certificate works fine at the backend but not in the frontend.
Thanks Tanel