Using this plugin on a secure site
-
I was having trouble with this site loading insecure Facebook content on my secure site. I looked into the code and came up with this:
/wp-content/plugins/feed-them-social/feeds/facebook/facebook-feed.php
on line 58, add&return_ssl_resources=true
to the end of the URL string.$url1 = 'https://graph.facebook.com/'.$fts_fb_id.'?access_token='.$access_token.'';
to
$url1 = 'https://graph.facebook.com/'.$fts_fb_id.'?access_token='.$access_token.'&return_ssl_resources=true';
Then change
http:
tohttps:
on line 361 of the same file.echo '<a href="'.$FBlink.'" target="_blank" class="fts-jal-fb-picture"><img class="fts-fb-event-photo" src="https://graph.facebook.com/'.$event_id_number.'/picture"></img></a>';
to
echo '<a href="'.$FBlink.'" target="_blank" class="fts-jal-fb-picture"><img class="fts-fb-event-photo" src="https://graph.facebook.com/'.$event_id_number.'/picture"></img></a>';
slickremix, can we get a checkbox option for SSL?
- The topic ‘Using this plugin on a secure site’ is closed to new replies.