Opened 17 years ago
Closed 17 years ago
#4359 closed defect (bug) (fixed)
Remove author dropdown from Manage Posts
Reported by: | westi | Owned by: | rob1n |
---|---|---|---|
Milestone: | 2.3 | Priority: | normal |
Severity: | major | Version: | 2.3 |
Component: | Administration | Keywords: | has-patch |
Focuses: | Cc: |
Description
The consensus on #3120 was that Manage Posts should not have an author dropdown as it didn't scale well for blogs with a large number of authors.
The reasoning was that we have a good UI method of accessing this view already via the [users.php page http://trac.wordpress.org/ticket/3120#comment:8]
Therefore we should remove the authors dropdown that currently appears on Manage -> Posts.
Also the action for adding your own filters has moved to be above the page heading which makes a plugin place it's UI in the wrong place.
Attachments (2)
Change History (15)
#2
@
17 years ago
- Keywords has-patch commit added
- Owner changed from westi to rob1n
- Status changed from assigned to new
#3
follow-up:
↓ 4
@
17 years ago
The author filter allows editors to separate out drafts from different contributors, so it would be nice to keep the capability to filter by author. Note that we have the same potential problem with categories. Some blogs have thousands of categories. Perhaps we could show the dropdown if there are less than so many authors or categories (say 200) and show a text input otherwise.
#4
in reply to:
↑ 3
@
17 years ago
Replying to ryan:
The author filter allows editors to separate out drafts from different contributors, so it would be nice to keep the capability to filter by author. Note that we have the same potential problem with categories. Some blogs have thousands of categories. Perhaps we could show the dropdown if there are less than so many authors or categories (say 200) and show a text input otherwise.
Agreed.
It just seemed strange for it to appear now when it was said before that it didn't scale and we already had a good way of accessing the info.
Whatever the outcome of the author dropdown we do need to move the action hook as I did in my patch above so that it is back in a more sensible place.
I think my prefered solution for authors / categories / any other large lists would be to look at alternative user interfaces which provide better access methodology.
Maybe a cloud style display for terms (tags/cats/...) which is within an expandable twisty.
#5
@
17 years ago
This is why we need to move the action hook:
The first Browse Author.. dropdown is added by a plugin - previously this appeared as part of the normal filtering under the H2
#6
follow-up:
↓ 9
@
17 years ago
I don't get it. How then are you going to transfer ownership of a post to a different user?
#7
@
17 years ago
Would it scale better to make the author box more like the category box (multiple authors, hint hint)?
#9
in reply to:
↑ 6
;
follow-up:
↓ 11
@
17 years ago
Replying to JeremyVisser:
I don't get it. How then are you going to transfer ownership of a post to a different user?
You do that on the Edit Post page not on the manage post page so I can't see how this is affected.
#11
in reply to:
↑ 9
@
17 years ago
Replying to westi:
Replying to JeremyVisser:
I don't get it. How then are you going to transfer ownership of a post to a different user?
You do that on the Edit Post page not on the manage post page so I can't see how this is affected.
Oh, I was totally confused. I though you were talking about the Edit Post screen. Sorry.
#12
@
17 years ago
- Keywords commit removed
I'm not very attracted to the prospect of completely removing the author filter dropdown. While it may not scale well for sites with lots of authors, the majority of sites out there are small-scale and would be fine with the dropdown.
That said, the use of a text box to replace that in larger sites doesn't appeal to me, either. IMO a guide (such as an autocomplete) would be good with that, but I don't know how to bring that off well.
Patch to remove the authors dropdown and move the action to a better place.