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.
2
votes
1answer
18 views
Custom comment status possible?
I am a newbie to WordPress and I have some experience in PHP programming.
Recently, I have a lot of comments for my WordPress blog and I wanted to manage them in better order.
I wish to "archive" ...
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
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 ...
1
vote
1answer
127 views
How can I hide the IP of registered commentators?
There is already a related question at
How do I turn off wordpress comments ability to capture a users ip address?
But is there a solution to do it for users/mods/admins only?
So that normal ...
0
votes
3answers
123 views
Let visitors post comments on category page
I'm looking for a way to let users comment categories on category.php, but I haven't been able to find one. Simple pasting didn't do the trick (didn't really expect it to.)
For clarification, I'm ...
7
votes
2answers
486 views
How to make comments work for a post loaded per Ajax?
I am currently loading a single post using ajax. While the post loading works ok, I cannot get the comments to load. Here is my code:
My javascript to load the post:
<script>
...
-1
votes
2answers
187 views
Display last comments on home page
Is there a way to select and display the last X approved comments regardless of which posts or categories they belong to ?
I just want to show on my home page the last comments added on my site, but ...
1
vote
1answer
90 views
Disabling archives, search results, comments, etc?
I am working on a site that has only text articles, and I am not making use of comments, archives, trackbacks and other features.
How can I make so these pages show a 404 not found error? I am not ...
0
votes
1answer
462 views
Disable Comments Feed
I am working on a private site where the comments need to be hidden. I know how to remove the comments feed from the header, but can anyone give me some instructions on how to disable the comments ...
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
1answer
18 views
Facebook comments empty [closed]
I'm trying to integrate facebook comments in my custom theme. My theme is based on a Blank theme. I'm using the official Facebook plugin.
Comments work fine in my theme now. When I turn on the ...
0
votes
1answer
17 views
Media upload in add comment meta box
Is there a way to add media uploader to add comments meta box in post edit screen? For logged in author to be able to post image in comment from back-end.
Thanks!
0
votes
2answers
307 views
Check for Facebook comments in a post?
How can I check if a post has Facebook comments on it and create a conditional statement? I'd like to show a small comments icon if any comments have been made.
Even better, anyone know how to get ...
1
vote
2answers
199 views
How to allow only Admins or Logged In Users to post links in comments?
I know how to disable HTML in comments, but I'd like the ability to only have Admins be able to post links, or only Logged In users if need be, to have the ability to post links. Is this possible?
I ...
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
3answers
109 views
Insert data on comment post
I am trying to find reference for comment_post to insert custom data to custom table when comment post.
I want to insert below things to my custom table
Comment's Post ID
Custom content (which ...
2
votes
2answers
501 views
Using Wordpress' WYSIWYG for comments
I've been trying to set up the comments section of a site I am working on to use the default Wordpress WYSIWYG (TinyMCE). But it's harder than expected.
I used this tutorial to take me almost all the ...
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
1answer
12 views
count number of all comments by a user on different (non-repeated) posts
I thank you in advance for your help. I am using Wordpress for about 2 years, but always avoiding SQL inside my scripts and looking for built-in functions to perform my goals.
To count the comments ...
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
1answer
27 views
Can I turn off further comments on a single page?
I have a blog post with comments on. I want to stop all people posting any further comments but keep the ones that are currently there. How do I do that? Using Wordpress 3.5.1
0
votes
2answers
116 views
strange behavior with comment position
I've created a custom content.php and removed any comments on the content.php page
then i changed the sharing-service.php from jetpack and added comments_popup_link there:
// Wrapper
...
0
votes
1answer
29 views
Separate jQuery for Individual Comments?
So far I have designed this function to display rating stars on the front end below every comment:
add_filter( 'comment_text', 'additional_fields' );
function additional_fields ($below) {
...
2
votes
1answer
211 views
Add a drop down list to comment form?
Can somebody help me to create a drop-down menu or (radio buttons) in Wordpress comment form, so that a new user could make a selection of their user roles (for example teachers + students) ?
Output ...
1
vote
1answer
11 views
Related Links Page with moderated, user suggested link submissions
Updating an old dinosaur of a site to Wordpress (3.5.1), one of the more popular pages on the old site is a “Related Links” page with links for and about kids. (e.g. fitness, nutrition, ...
0
votes
1answer
11 views
Change comment author after new comment posted
I'm trying to update the user_id of a comment once it has been posted. It looks to see if the comment_author_email exists as a user in the users table, and if it does, attach that user to the comment.
...
0
votes
1answer
30 views
Display only posts with comments
I have this code to show recent posts from one category. I need to show only the posts which have comments. How can i do that via shortcode?
/* Shortcode to output recent posts from one category */
...
1
vote
1answer
43 views
Why do I get email notifications about comments that Wordpress has already determined are spam?
I have a wordpress.org blog that I host on my own site. I have the Akismet plugin installed, and in general I keep both up-to-date (e.g. at the moment, Akismet is at version 2.5.7, and Wordpress at ...
0
votes
1answer
150 views
Display category-specific comments in sidebar
I'm trying to display comments in the sidebar from only the current category. So far I've got this:
<?php
// Posts per page setting
$ppp = 8; //get_option('posts_per_page'); // either use ...
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 ...
0
votes
0answers
10 views
How to connect front end star rating system with meta data? [duplicate]
I am making a plugin - In which I achieved displaying radio button along with submit button at the front end of every comment. the code is
add_filter( 'comment_text', 'additional_fields' );
...
2
votes
1answer
89 views
Custom Comments - Parent / Nested Reply
I am making a custom theme and have edited comments.php, but I'm unable to get the comments to save as a reply to another comment. I have succeeded in showing the comment parent id to show as a hidden ...
1
vote
1answer
21 views
Filter In Reply comments from Wordpress Admin Panel
Is there any way to filter the comments that are In Reply from the comments list? I basically just want to see the depth 1 comments on a separate filter.
@GhostToast Ive added this to create a new ...
1
vote
1answer
15 views
How to remove comment link title attribute?
When I hover over any post's comment link, I see the title: "Comment on Post Title". How can I remove it? I could not find this text in the theme.
Edit: Here's the source which generates the comments ...
1
vote
2answers
39 views
Is Wordpress vulnerable to “comment posting forgery”?
I recently scanned my Wordpress site using 6scan's security scanning service. It reported a high severity vulnerability: "Wordpress comment posting forgery".
Technical details from 6scan:
The ...
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
1answer
12 views
Show 'add comment' link for status updates in Twenty Thirteen
I have WP 3.6 running on my server. After playing around with it, I noticed that it's not very intuitive to add comments to a status update;
Guess how?
After some thought, I have decided I would ...
0
votes
1answer
14 views
Get rid of “comment” field on non-blog pages [duplicate]
How can I get rid of "comment" field at bottom of page I want to use as a static page or pages on site such as "About" ; "Contact" , etc.
0
votes
1answer
62 views
Why are two functions over-riding each other?
I have function in my plugin that is:
add_filter('comment_text', 'commentimage_comment_text');
function commentimage_comment_text($comment = '') {
$options = get_option('commentimage');
$id = ...
-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 ...
2
votes
1answer
249 views
Adding another arg to comments_popup_link
what WordPress core functions do I have to modify to change
comments_popup_link('Ni komentarjev', '1 komentar','% komentarjev')
to
comments_popup_link('Ni komentarjev', '1 komentar', **'2 ...
1
vote
2answers
18 views
Highlighting the current users comment
I don't know if this is possible, I've searched around but came up short. Basically, I need that the current user who is commenting to see his comments slightly different than the rest.
I'm doing ...
1
vote
1answer
50 views
How to make comment text field un-required?
My requirements are bit different I was able to hide email and website field with filter but what I want to know is there a way to make comment text un-required when I am giving comment without ...
0
votes
1answer
19 views
I want to fill the comment with the comment count?
I am using a custom function to pre fill the comment text area with the number of comment count but getting an error header already sent can any body guide me here's the code I am using
...
0
votes
1answer
26 views
Facebook plugin shows existing comments
Installed the official facebook plugin and seems to be working.
The problem is that existing comments are still visible (with default style) above facebook comments form.
My comments.php is empty now ...
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 ...
2
votes
2answers
226 views
Using Disqus, how to stop storing comments in wp database?
I'm using disqus comments system, but it keeps storing the comments in the wordpress database as well. Is there way to disable option to store comments in wordpress database because I don't see any ...
-1
votes
0answers
27 views
Which is the best plugin for Facebook comment box and auto-post? [closed]
I am seeking for the best plugin to intergrate my blog with my Facebook Page.
I want to use the Facebook comment box in each post, instead of the theme's default comment section and the ability to ...
0
votes
1answer
25 views
Problem with Wordpress Comment
Im sorry about my english.
I have made more than 5 comments on post pages. I have publish all the comments. But there are no comments that appear on the post page.
This is my Comments.php content:
...
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 ...
