Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sharethis plugin not working with https://

I have changed my site domain from http:// to https:// and I have added sharethis plugin in my site.

It was working fine with http:// but now no buttons of share this displaying when I try to access my site using https://.

The following is the url of my site:

https://www.placementbooster.ch/

I have changed http://w.sharethis.com/button/buttons.js to https://ws.sharethis.com/button/buttons.js and http://s.sharethis.com/loader.js to https://s.sharethis.com/loader.js.

But still it is showing error:

ReferenceError: sharethis is not defined

like image 867
Gokul Shinde Avatar asked Nov 13 '14 05:11

Gokul Shinde


1 Answers

Adapted from the docs:

https://support.sharethis.com/hc/en-us/articles/217916188-Moving-from-HTTP-to-HTTPS-SSL-Support

Regular ShareThis Script

<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script>
<script type="text/javascript">
stLight.options({
    publisher:'12345',
});
</script>

Secure ShareThis Script

<script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="https://ss.sharethis.com/loader.js"></script>
<script type="text/javascript">
stLight.options({
    publisher:'12345',
});
</script>

I'm using this code ant it is loading correctly without any mixed-content issues

like image 192
NiloVelez Avatar answered Sep 25 '22 17:09

NiloVelez