Hi dear user.
We left a comment and the new comment works fine, can you try again with another account?
Thanks.
I don’t see where you provided a new comment.
At what link?
Dear user.
We added a comment, then check the page after 1 hour and then removed it(comment was left from a personal account, that’s why we removed it).
Ask your friend or left comment from another account, it is working from our side.
Thanks.
I’d like to reopen this issue because it hasn’t been solved.
90% of the comments to our site are displayed correctly by applying the html filter in the functions.php that changes all comments to http from https.
The issue is some of the comments that are left are captured and posted as “https” and not just “www”. In these cases the comments don’t show. The only way to make those show is to remove the filter, allowing the data-href value to remain as https.
This isn’t page specific as I can post a comment to a page that has missing comments and the comments will show up fine. As I type this there are comments in my moderation tool that are there but are not showing on the actual page.
Thank you
I’m including some screen shots from within the moderation tool showing how some comments are being logged with https (not working) and others as www which are working.
https://drive.google.com/open?id=1BUTtNuB0horRT84iL_ZuQpEBo6LZtLqU
(@rtanner22)
7 years, 11 months ago
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=”http://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]