Posts: 14
Threads: 7
Joined: Jun 2021
I have setup a comments form etc etc, but when someone submits a comment, it doesn't show under the form, all it shows is 'No comments yet, be the first', I get the emails that someone posted and what they posted, but nothing is shown on the website, the comments admin page says I have 2 comments, and I have set comments to not require approval, because I'm using re-captcha to prevent bots.
Is there a setting in the admin panel that enables/disables displaying of comments?
Posts: 14
Threads: 7
Joined: Jun 2021
Since I can't edit my post, I'll add to it here.
It seems the existing comments only show up if I (admin) add a comment, it seems when I add the first comment, all other existing comments are actually replies, I thought the idea was that anyone can add comments, but by disabling replies, only the comments are seen.
If I deleted my comment, the existing comments don't get physically removed, but are removed from the screen, but when I add a comment, then they show up again, but as replies.
Posts: 14
Threads: 7
Joined: Jun 2021
I fixed it, I had to 'employ' a profession scripter to hunt it down, so now it's fixed, I couldn't wait for days or even weeks before I got any replies, and people were getting impatient because they were posting complaints for a company and the company PR department wasn't seeing the comments, to act on them.
Posts: 2,894
Threads: 59
Joined: Jun 2010
Do you know what the fix was? If it's a bug it would be nice to fix it for everyone else.
Have
you completed
the interview?
Posts: 14
Threads: 7
Joined: Jun 2021
Yes, I found out that when inserting/embedding into HTML, and using the line:-
Code:
<script src="http://domain-name/comments/embed.js"></script>
Commentics suggest to place it inside the <header> tags, but it didn't work that way, so what was found was that if that line was placed in the <body> section, then followed by <div id="commentics"></div> it worked fine.
This is a snippet of the HTML page I used to embed the comments box:-
Code:
<div class="u-clearfix u-custom-html u-custom-html-1">
<script src="http://domain-name/comments/embed.js"></script>
<div id="commentics"></div>
</div>
Posts: 2,894
Threads: 59
Joined: Jun 2010
Okay thanks for letting me know.
Have
you completed
the interview?