0
votes
0answers
11 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 ...
2
votes
1answer
34 views

Plugin: How should I handle deleting comments?

I am writing a plugin that creates an api for a custom post type. Users can comments on the custom post types and the comments are added using WP core comment methods. My question arises when trying ...
1
vote
1answer
32 views

Creating a plugin to sanitize comment and the url field before display only

I want to create a plugin to sanitize comment and mainly the url field before display only (not before adding to database), to filter the url fields and only allow displaying this field only if it ...
2
votes
1answer
146 views

Writing a plugin that notify my friends of new post that mentions(@) them

For example, I write a new post with content "Today I'm happy, because I finally met the girl that @David told me about bla blah..." Once the post is published, there should be an email notification ...
2
votes
1answer
32 views

comment_email hook doesn't seem to work for comment editor field

I am building a plugin that allows users to PPK encrypt their users' IP/email data. Thus, IP/email data is set to dummy values in the comments table and encrypted values are stored in corresponding ...
0
votes
1answer
97 views

Custom avatars in wordpress comments?

I'm looking for a way to let people connect with facebook when posting comments, and to use their facebook avatars as the avatar for the comments. How can this be done? Do I need to create a seperate ...
0
votes
1answer
100 views

custom comments form for custom post type

Hello everyone I am creating a theme dedicates to hotels display and booking in which I have created a custom post type 'Hotels' so now I want a mechanism to book the hotel rooms and a "book now" ...
2
votes
1answer
126 views

Show comments fields in two columns

I am using comment_form(); in loop-single.php file to show the comment form. I have the following fields in it: Name, Email, Website, Title, Comment. Currently all these form fields show underneath ...
1
vote
2answers
167 views

Plugin Functionality Only for Editor and Administrator

I've never actually written a Wordpress plugin before, so this is my first crack at it. Basically, the plugin is for multi-author blogs where post authors must submit their post for review. The ...
0
votes
2answers
376 views

How could I create a 'private comments' section on a custom post type?

Related to my How do I create a custom post type for a training CMS in WordPress? question, I would like to know how I can create a private comments section for a custom post type (or any post type ...
0
votes
1answer
114 views

disable defaault wordpress comments from a plugin

I am modifying the facebook comments plugin to my purposes. What I'd like to do is have it remove Wordpress native comments automatically if it is enabled- in fact what I'd really like it to do is use ...
1
vote
1answer
234 views

How do I alter the comment form 'allowed tags' text in a plugin?

I'm using the PHP Markdown plugin, and I'd like to modify it so that it adds some text to the bottom of the comment form indicating that Markdown is supported in comments. I've been modifying my ...
0
votes
2answers
213 views

Comments do not respect display_name setting, how to make plugin to overcome this

When I post something on Wordpress, it's posted with my display name. However if I change my display name, posts posted by me will be updated with the new author. Comments will stay with the old ...
0
votes
1answer
31 views

Comments with prefix in plugin [closed]

http://wp/ads/users/user2-5 $wp_query->get('id'); //5 comment_form(array(),5); Now comments ID is 5. Is there any way to set comments ID with prefix like this: http://wp/ads/users/user2-5 ...
1
vote
2answers
190 views

How to integrate CLEditor to comment system?

I would like to improve the comment editing for user by adding a simple WYSIWYG editor, and I selected CLEditor as possible good candidate because it is light, customizable and jQuery based. I ...
0
votes
1answer
310 views

How can I get Wordpress to save comments in markdown format?

I love markdown, and I have the Wordpress markdown-for-wordpress-and-bbpress parsing markdown in my posts and comments. However, I've noticed that Wordpress saves the comments rendered in html ...
0
votes
1answer
291 views

Hook to See if Comment got a Reply?

Okay I know the title is pretty vague but I didn't know how to articulate it. Basically, I want a plugin that sends email notifications to users who opted-in only if they specifically got replied to. ...