Social Share recovery on SSL
-
Hi,
After a switch to SSL, how could one recover the likes?
I found a filter in the plugin: update_easy_social_share_url, which I thought to use to replace the url back to https. But it doesn’t seem to work. Is there another way to change the url the plugin uses to retrieve the likes?
add_filter( 'update_easy_social_share_url', 'fix_easy_social_share'); function fix_easy_social_share($url) { $url = str_replace("https://", "https://", $url); return $url; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Social Share recovery on SSL’ is closed to new replies.