The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
42 views

How to add a “publish” link to the quick actions

I'm trying to add a "Publish" link by the quick actions: but I'm not exactly sure of how implement it. Here's what I've got so far: add_filter('post_row_actions', function ( $actions ) { ...
0
votes
1answer
25 views

How to make all the posts commentable by default? Imputs in Settings/Discussions are not saved

I've modified my website quite a bit and now looks almost as I desire. I've set all the posts to be commentable in Settings/Discussions but it seems that this imput is not saved and new posts by ...
0
votes
1answer
39 views

Comments screen in backend, how to disable Quick Edit | Edit | History | Spam | for non admins

I'm trying to adjust the comments screen for non admins to my project. Right now I'd like to disable Quick Edit | Edit | History | Spam under any comment left for any post created by the user. ...
0
votes
1answer
50 views

Disable “quick edit” only for non admin in functions.php

I have this in my functions.php function remove_quick_edit( $actions ) { unset($actions['inline hide-if-no-js']); return $actions; } add_filter('post_row_actions','remove_quick_edit',10,1); to ...
1
vote
1answer
85 views

Let user edit his own comment

can I allow user to edit his own comment (without, username, url, or mail) on front-end. For example simple form on custom worpdress page with his comment and submit button. Thank you all in advance! ...
0
votes
1answer
197 views

Remove quick edit for custom post type

Is it possible to remove the quick edit function for a custom post type? I have 14 custom taxonomy with hundreds of terms in each and it takes too much time and resource to load all of them into the ...
0
votes
1answer
88 views

How can I extend Quick Edit option with 2 more fields

I wonder if WordPress gives me the ability to add 2 fields (input and textarea) in the Quick Edits of Tags. Actually these 2 fields I want to add in Quick Edit which are available in Edit Tag page, ...
1
vote
1answer
164 views

Make metabox of custom post type fully autosave- and bulk-/quick-edit compatible

I'm trying to create a custom post type and I've had the same problem that's described here; my custom meta information was properly saved, when saving manually, but got lost as soon as the autosave ...
0
votes
1answer
44 views

Fields don't reflect previous Quick Edit changes when clicking Quick Edit a second time

I've added a column to the edit screen and add an input for that column in the quickedit. Everything saves and displays like I'd expect with one small hiccup. If I click on Quick Edit for a ...
0
votes
2answers
301 views

How to Reload the Dashboard After Clicking Update in Quick-Edit?

How can I refresh the wp-admin/edit.php page after a user clicks Update in the Quick-edit form?
3
votes
1answer
584 views

Remove specific items from Quick Edit menu of a Custom Post Type?

I would like to remove some items from the quick edit screen on a custom post type. I would like to remove "slug", "date" and "password", as they will never not be used by end users. I'm open to ...
0
votes
1answer
135 views

Change quick edit terms list to radio buttons

is it possible to remove the current tax term checklist from the quick edit screen? i have switched the metabox for the "subject" taxonomy, to radio buttons, and would like to do the same in the ...
1
vote
1answer
137 views

How do I limit the status options for bulk/quick edit to only Published and Draft?

For my custom post type, I only want to have "Published" and "Draft" as the available options in the bulk edit and quick edit screens, i.e. I tried hooking on to the filter ...
1
vote
2answers
246 views

How to verify nonce from Bulk/Quick Edit in save_post?

I need to do something specific in my save_post callback for bulk and/or quick edits, so how do I check the nonce for that? I can only find _wpnonce in the edit.php html source, but can't find an ...
1
vote
1answer
309 views

How to remove a parent theme template from Quick Edit?

I was looking for a way to hide the parent theme's templates and found this answer which works perfectly to remove the parent templates from the pages edit screen - How to *remove* a parent theme page ...
0
votes
1answer
258 views

pass error to admin_notices on “quick edit”/save_post action

I currently have add_action('admin_notices','my_notice_function'); updating correctly whenever a page is refreshed (it's checking if a certain page has a certain parent) but when using the "Quick ...
0
votes
1answer
270 views

Remove Posts Quick Edit link for specific user role? WP 3.3

I am using Wordpress 3.3.2 with the following plugin: - http://wordpress.org/extend/plugins/advanced-access-manager/ The plugin works perfectly but the author said there is currently no way to ...
2
votes
1answer
155 views

Is there a way to prevent author change when editor/administrator edits a post?

As an administrator when I change or edit a post of an author (for example add a category through quick edit) the author of the post changes. We do not want this to happen. Is there a way to prevent ...
0
votes
1answer
76 views

Multi Quick Edit - Possible Or Impossible?

I'm just wondering if this is possible because the variation names listed in the products have text which is not really necessary even though I have deleted the category, its still appearing. Hope you ...
1
vote
1answer
314 views

Changing comments avatar

Is there a plugin that lets me change an avatar of a comment? Since I can edit comments, is it possible to add avatars as well? I don't have registered user on my blog, only guests and those who ...
0
votes
1answer
174 views

Improving Co-Authors Plus Plugin [closed]

I've been using the Co-Authors Plus plugin for assigning multiple authors to posts. The authors are very particular in the ordering of the names on the public-facing side of the website so I need the ...
0
votes
1answer
523 views

How to fix: Clicking 'Quick Edit' link in Admin (edit.php) makes posts disappear?

When I'm logged in and go to the Posts management page (edit.php), if I click the 'Quick Edit' button, the clicked post disappears from the listing! This occurs in FF7 and Safari 5.1, running WP ...
0
votes
2answers
624 views

Show Custom Fields in Quick Edit

I have several custom fields that I need my client to be able to edit at anytime. For the sake of convenience, I'd like them to be able to edit these custom fields from the Quick Edit. This way they ...
0
votes
1answer
657 views

Is there a way to enable bulk edit and quick edit on custom post types?

When viewing a list of all standard post or pages there are convient quick edit and bulk edit functions to edit author, template, status, dates, etc... Is there an easy to enable similar quick edit ...
1
vote
2answers
2k views

How to get and edit custom fields if in Quick Edit

I've got some custom fields that I would like a user to be able to edit in Quick Edit, I can manage the columns but I'm unable to edit them if Quick Edit is clicked current code with custom fields I'd ...
2
votes
2answers
1k views

Retrieving values of custom fields in Quick Edit mode

I've been trying to add a field to Quick Edit. Somehow it works: it is displayed and if you enter a value in the input field, the value is saved into a custom field. However, can't seem to find a way ...
5
votes
1answer
3k views

Quick edit screen customization

Possible Duplicate: How to show custom meta box on "Quick Edit" screen? I'm trying to edit the quick edit screen on my custom post type "visitor" so that I can add some options for my end-users. My ...