Comments allow your website's visitors to have a discussion with you and each other. When you activate comments on a Page or post, WordPress inserts several text boxes after your content where users can submit their comments.

learn more… | top users | synonyms (1)

3
votes
1answer
94 views

WordPress comment count to include attachment comments

How can I make the comment count on a post on my index page include comments that have been made on, in my case, individual gallery pictures that are included in the post? It seems that comments made ...
3
votes
1answer
130 views

How to target the default Recent Posts and Recent Comments widgets with pre_get_posts?

I added the following to my functions.php: add_action('pre_get_posts', 'keyl_get_emp_posts'); function keyl_get_emp_posts($query) { if ($query->is_main_query()) ...
2
votes
1answer
60 views

edit_comment capability for subscriber

I have given my site's subscriber role the following permissions (unserialized DB-query): [subscriber] => Array ( [name] => Reader [capabilities] => Array ( ...
2
votes
1answer
76 views

“Allow Comments” box cannot be checked

I've registered a custom post type, ensured that 'supports' has 'comments', and comments are allowed on new posts under settings -> discussion. I do see the check boxes for allow comments and allow ...
2
votes
0answers
225 views

comment_post_ID 0 (cannot remove from dashboard)

Ran across something a bit odd that I haven't seen before. A client has a pretty active blog and uses Akismet (paid) to protect against spam. At least once a day, they're reporting a spam comment that ...
2
votes
0answers
51 views

How to hide “Trackback” on paginated comments

My Setup: On my Single's page I have used this comments_template('', true); to separate Trackback's & regular comments. The Heading "Trackbacks for this post" shows up only if a post has ...
1
vote
0answers
41 views

Loading Multiple Comments Pages via Ajax?

I have been searching Google and still haven't found any great ideas for making comments pages load via Ajax. After searching SE I found this older thread from just a few months ago which provides a ...
1
vote
0answers
24 views

Alternative to the filter comment_reply_link

I'm making a plugin and need to add a link to every comment on the front-end. I've used the filter comment_reply_link but that filter doesn't work when we're on the lowest level of threaded comments ...
1
vote
0answers
74 views

Post Comments with Ajax in Wordpress

I use this code to post comments with ajax on my WP blog. It works fine but I display the comment form on my homepage so the plugin only works for the first post (first comment form). I want it to ...
1
vote
0answers
23 views

Number/ Position of a Comment

Does anyone know a good way to get the count number or position of a comment under a post? In the known comment array there is only the related_post_ID not the relative number in the affected post. ...
1
vote
0answers
49 views

Incorrect redirection after commenting on custom type

I use custom post type, and when users make a comment on page www.mysite.com/custom-type/2013/01/20/post-name/ they are redirected to www.mysite.com/2013/01/20/post-name/#comment-2231 [e.g. without ...
1
vote
0answers
49 views

Why does akismet prevent jetpack comments from appearing in my moderation queue?

On the blog I run, when I have Akismet activated, it somehow prevents comments posted via Jetpack from appearing in the moderation queue. I know it's Akismet because I have disabled every plugin but ...
1
vote
0answers
41 views

check if comment submitted was successful

I want to use php to understand if comment submission was successful. Is there any get/post data I can use to make if function for this?
1
vote
0answers
46 views

code highiglight not working comment

SyntaxHighlighter Evolved plugin installed on my blog. Code highlight working on post,but no comments.. I am showing the comment form with the different codes : <form method="post" ...
1
vote
0answers
41 views

Trackbacks not displaying

I'm building a new theme and I'm just working through the Theme Unit Test requirements in the Codex. I'm stuck on the Many Trackbacks test. My theme doesn't show any Trackbacks but for the test post ...
1
vote
0answers
55 views

Display posts with comments closed, with pagination?

i'm using a custom query, which needs to display all posts with closed comments. I have this <?php $the_query = new WP_Query('showposts=-1'); ?> <?php while ($the_query -> have_posts()) ...
1
vote
0answers
44 views

Comments from vbulletin topic

I have a WordPress site and a forum that runs vBulletin. Each article I post on the website is automatically posted as a thread on a specific forum category (using the website RSS feed). Now, I have ...
1
vote
0answers
96 views

Latest comments from each category?

On the "home"-page I'm trying to display the most recently commented-on post for each category. I managed to display the most recently published post for each category, but if an older post from each ...
1
vote
0answers
40 views

wp.getComments is returning nill, when i called from my iphone app

i have called wp.getComments from my iphone app, but its returning nil,, following r my parameters can anybody tell me where i gone wrong NSDictionary *DicCommentStructure = [NSDictionary ...
1
vote
0answers
51 views

Can i Use own Facebook App ID with this Social Comment Plugin?

Is it possible to connect the plugin with an own Facebook App ID? In this way it would be entirely clear that this App belongs to the respective blog. Beyond that, if I have other Facebook stuff on ...
1
vote
0answers
77 views

How can I make the user names of commentors clickable links to the user's profile from the admin comment screen?

I've set up my wordpress blog to only allow logged in users to leave comments, but I need a way for the administrator to be able to go to a user's profile from the comment moderation screen. I don't ...
1
vote
0answers
136 views

Nested comments in WordPress theme

I'm creating own theme to WordPress. Got problem with nested comments. I have enabled option in admin panel for two levels. And what next? I've read a lot of net articles but nothing helpful. I want ...
0
votes
0answers
14 views

Sort posts by facebook comments count

Hi i am working on "category posts widget" plugin. In that there is an option "sort by comments". But that sorting is done by wordpress comments. I need sorting by facebook comments count. i have ...
0
votes
0answers
33 views

Allow users to upload videos and images

I need to allow users to upload videos and images to WordPress. This can either happen in the comments section (so far I have managed to allow users to comment using Facebook and upload a picture), ...
0
votes
0answers
36 views

Saving comments not with PostID but different unique identifier

so here is the deal: I want comments to be saved not with the post ID but with another unique identifier. With disqus there is a way to do this with javascript: /* * * CONFIGURATION VARIABLES: THIS ...
0
votes
0answers
16 views

Customizing h3 title inside the comment_form template

I'm customizing comment_form function and I noticed that I can't control the layout of what's outside the form itself. This is default layout of the comment_form: <div id="respond"> <h3 ...
0
votes
0answers
20 views

Loading more comments after clicking a button

Is it possible to load site comments like twitter or somthing like that sorry I'm noob with wordpress
0
votes
0answers
10 views

When I make a comment on someone who has already made a comment I want them to recieve an email

I run a site and people have made comments. When I comment on their comment they do not get an email back however. I would like to change that. How can I do that?
0
votes
0answers
27 views

Pull & display new comments without refreshing the page

I've just managed to implement ajax on comment submission and now members don't have to leave the page when they comment but still have to go one extra mile when they want to see new comments. I've ...
0
votes
0answers
24 views

Ajax call to get disqus comments of certain post

Say if users click the "comments" link they are usually redirected to a single.php page which contains the comments. I'm trying to figure out a method to do the following. Have a div on a page which ...
0
votes
0answers
8 views

how to validate reCAPTCHA in #commentform

I have added reCAPTCHA into commentform and I can see the reCAPTCHA in comment form. But I have no idea where and how do I need to validate reCAPTCHA. I saw the function in my themes. // comment ...
0
votes
0answers
73 views

FB - Comment Moderation Tool bug or error in the code?

I am an admin of this site. This blog uses the FB comments plugin since around 1 year. Since I enabled the July Breaking Changes, I: -am not receiving any more new comments notifications on FB; -New ...
0
votes
0answers
41 views

Comment/post ratio system for users

In a multi-author platform, to enhance interaction between authors, I want to add a ratio system that calculates the author's comment count (on others posts) and post count and displays a grade. ...
0
votes
0answers
23 views

Display recent commented post above new submitted post

I have a list of all posts that are commented on a particular day. If someone comments a post, I want it to put that one above the other posts, even if they are submitted on a more recent date... How ...
0
votes
0answers
35 views

How to add notification alert in the admin bar when someone comments on a post

I am using Buddypress 1.6.7 What I want is that when a user comments on some blog post then the post author should receive a notification in the buddybar/admin bar (round blue bubble), saying that ...
0
votes
0answers
27 views

Deleting users do not deletes coments

Hello I have bee trying to figure this one out without any luck. I am deleting users from my site, and selecting either delete comments or attribute comments to: options do nothing. The user does not ...
0
votes
0answers
15 views

Break comments into pages with remainder on the first page

Settings > Discussions has a setting called Break comments into pages with (N) top level comments per page and the (last or first) page displayed by default. Now I want to break into 30 comments per ...
0
votes
0answers
23 views

Making comment persist after error?

On my comment form I am using a filter that checks for "bad" word. If the message contains one these words, it gets flagged as spam it send a transient message back to the comment page. Now what I ...
0
votes
0answers
42 views

Integrate Facebook comments with native comments

I've finally installed the Facebook Comments plugin to allow readers to comment using their Facebook identity. After the installation, I got two different comment sections, with two separate comment ...
0
votes
0answers
28 views

comments_popup_link(); isn't working for some reason

I'm trying to get comments_popup_link(); to work in my theme, but it isn't. I honestly see no reason why it shouldn't. The relevant part of my code: <div class="row"> <div class="span7 ...
0
votes
0answers
16 views

Deleting comments with meta data

I am trying to delete a bunch of comments using the admin interface, and I can't do this because of the errors below. The comments have associated meta data (I am working on a custom plugin) and I ...
0
votes
0answers
71 views

Multiple comment forms on one page cause message - ERROR: please type a comment

Instead of clicking reply on my comments I have them laid out with a reply form already showing underneath each comment. Each form has been populated with the post_id and the comment_id and looks ...
0
votes
0answers
35 views

Dont remove comment box when replying to existing comment

When using the WordPress comment system the top Comment Reply box dissapears when I click to reply to any of the existing comments. If I then click cancel it reappears. Is there a way to keep this ...
0
votes
0answers
44 views

display comments in a lightbox like overlay window

I want to display the comments in a lightbox style window when the user clicks on the number of comments in index.php (instead of going to the single.php) without any page refresh. I tried searching ...
0
votes
0answers
22 views

Comments in Wordpress shoves content out of wrapper on updates

I have a problem with comments in the Wordpress theme I'm building. As of now, I can comment just fine, but whenever I do (press "reply", "edit comment", press the date, really anything that involves ...
0
votes
0answers
44 views

Display all posts a registered user comment on

I found this plugin/code which shows recent comments of a particular user in WordPress. How can i display a list of all posts a registered user comment on? I need to display posts titles rather than ...
0
votes
0answers
17 views

How can I have a full comments.php for an easy editing of all its aspects?

Is there a way to get the full code of the comments.php instead of the one I have with any recent theme where I just can edit few parts of it? I know it's encoded but I wonder if there's a chance to ...
0
votes
0answers
17 views

Multiple pingbacks not appearing without “updates”

I often end up referencing several previous blog posts in new ones I write. However, only the first shows as a pingback in the admin dashboard. If I update the new post, the next pingback will ...
0
votes
0answers
71 views

How to put WP comments into an iframe so comments are accessed by clicking a link..?

If possible I'd like to place my Wp Comments in an iframe so that I can use a link to access them, instead of having them always display at the bottom of the post. I've tried a couple of plugins, but ...
-1
votes
0answers
21 views

Comment rating system with stars how to db it and load specific

I usually don't bug people find and create things learning from online tutorial but sure to ask help when I am totally stuck What I want here is just a comment star rating system with max 5 stars ...

1 2 3