[Plugin: Trackable Social Share Icons] It wrongly thinks my site uses https
-
The icons were not loading in this trackable social share icons plugin.
I seems the value of
$_SERVER['HTTPS']
is “off” but the logic of the functions _trackableshare_buildurl() and _trackableshare_setpaths in the index.php file was changing the “http” to “https” anyways. That created a non-existent url for the icon image file.So in order to make the icons show up I replaced that chunk of code with this
('on' == strtolower($_SERVER['HTTPS']))
I don’t know why this was happening on my site but maybe it’s because I’m using WP Multisite, or something is funky with my redirects within my shared host or something. I hope this helps someone.
https://www.ads-software.com/extend/plugins/trackable-social-share-icons/
- The topic ‘[Plugin: Trackable Social Share Icons] It wrongly thinks my site uses https’ is closed to new replies.