Hi, changed to https some time ago and only just noticed the comments have disappeared, it seems that if you change to https facebook deems this a different domain name which seems silly. Anyway I noticed other plugins have a work around i.e http://support.heateor.com/recover-facebook-comments-wordpress-moving-to-https-ssl/ anyone know if it is possible with this one? Thanks.
Hi @GGMM,
Unfortunately, there is no option like that on our Facebook comments plugin. You may want to check this article for some guide that might help.
Thanks, for anyone else I installed really simple ssl plugin and added this to my child function.php and old comments are back.
function rsssl_exclude_http_url($html) {
//replace the https url back to http
$html = str_replace('data-href="https://www.yourdomain.com', 'data-href="http://www.yourdomain.com', $html); return $html;
}
add_filter("rsssl_fixer_output","rsssl_exclude_http_url");
Hello @GGMM,
You are most welcome!
We really appreciate for letting us know that it has worked for you.
Cheers.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.