cancel
Showing results for 
Search instead for 
Did you mean: 

EV SSL certificate works fine at the backend but not in the frontend.

SOLVED

EV SSL certificate works fine at the backend but not in the frontend.

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

1 ACCEPTED SOLUTION

Accepted Solutions

Re: EV SSL certificate works fine at the backend but not in the frontend.

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.

Tanel Raja

View solution in original post

2 REPLIES 2

Re: EV SSL certificate works fine at the backend but not in the frontend.

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.

Tanel Raja

Re: EV SSL certificate works fine at the backend but not in the frontend.

Thanks Tanel