Comments not showing when moving from http to https
-
I recently updated my site to use https instead of http.
The problem I’m experiencing is the old comments that were made under the http site are not showing up under the new https site.
I applied a fix that makes the old comments show up:
//Fixes FB comments
function rsssl_exclude_http_url($html) {
//replace the https url back to http
$html = str_replace(‘data-href=”https://www.thepathoftruth.com’, ‘data-href=”https://www.thepathoftruth.com’, $html); return $html;
}add_filter(“rsssl_fixer_output”,”rsssl_exclude_http_url”);
However, the problem is the new comments that are made at the https site don’t show up. I either have to show old comments and not the new ones, or show the new ones and not the old ones.
Is there a solution for this problem?
Thank you
The page I need help with: [log in to see the link]
- The topic ‘Comments not showing when moving from http to https’ is closed to new replies.