﻿__group__	ticket	summary	owner	component	_version	priority	severity	milestone	type	_status	workflow	_created	modified	_description	_reporter
Needs UI Work	15355	Add ability to clear search results	garyc40	Administration		normal	normal	Future Release	enhancement	assigned	needs-ui	2010-11-09T08:11:56Z	2012-04-13T11:32:28Z	"Let's put a (X) next to ""Search results for `string`"" that immediately clears the search results. Otherwise there is no way to do it, without clearing the box manually and hitting enter.

We would use the same X we use for bulk edit."	nacin
Needs UI Work	17783	Inconsistent theme management screens		Administration	3.0	normal	normal	Future Release	enhancement	new	needs-ui	2011-06-13T12:32:26Z	2011-06-13T13:12:51Z	"On single-site you have tabs, while on multi-site you have an ""Add New"" button:

/wp-admin/themes.php (single-site):

[[Image(http://core.trac.wordpress.org/raw-attachment/ticket/17783/themes.png)]]

/wp-admin/themes.php (multi-site):

[[Image(http://core.trac.wordpress.org/raw-attachment/ticket/17783/ms-themes.png)]]

/wp-admin/network/themes.php (multi-site):

[[Image(http://core.trac.wordpress.org/raw-attachment/ticket/17783/ms-themes-network.png)]]"	scribu
Needs UI Work	6286	"Proposed changes to ""E-mail me whenever"" Discussion Options"		Administration	2.5	normal	normal	Future Release	enhancement	new	needs-ui	2008-03-18T19:14:55Z	2013-05-24T17:23:40Z	"WRT the ""E-mail me whenever"" options on the Discussion options page:

[[Image(http://img132.imageshack.us/img132/4215/picture1vf1.png)]]

 1. For ""a comment is helf for moderation,"" the ""me"" is ambiguous.  It should specify that it means the blog admin e-mail address.
 1. For ""anyone posts a comment,"" again, ""me"" is ambiguous.  In this case ""me"" means the author of the post.  The comment notification setting is personal, and therefore should be set in the profile options (where it can retain the ""me"").  Some authors may want e-mail notification, others might not."	markjaquith
Needs UI Work	20025	Add a filter for post types when viewing list of comments in the backend		Comments	3.3.1	normal	normal	Awaiting Review	feature request	new	needs-ui	2012-02-12T14:03:49Z	2012-02-12T14:38:23Z	Filtering comments based on post type	nprasath002
Needs UI Work	13392	Image editor UX could be more straightforward		Media	3.0	normal	normal	Future Release	enhancement	new	needs-ui	2010-05-14T13:54:06Z	2013-02-08T17:15:27Z	"The image editor introduced in v2.9 (?) is pretty handy, but I believe the UI needs to be straightforward. Here's some issues which I see, as a starter for discussion, and hopefully later I'll be able to make some quick wireframes to suggest improvements and so everyone can have something to get hating.

The overarching issue is that the UI seems confused when it comes to committing the action you've just taken, for example:

 * To scale an image, you commit the action with a button labelled ""Scale"".
 * To commit a crop you have to click the crop icon button, which looks like a tool selection button (ala Photoshop) rather than something which commits the change.
 * The Save button is disabled most of the time, for reasons which are unclear, but it's not super obviously styled as disabled.

Separately from the problems of committing actions, the ""Apply changes to"" panel is kind of stuck down to the right and it's not clear at which points it's having an effect.

There are no messages back to the user to confirm whether actions have or haven't been taken.
"	simonwheatley
Needs UI Work	18301	Activating a new theme on multisite is very long-winded	PeteMall*	Network Admin	3.1	normal	normal	Future Release	enhancement	accepted	needs-ui	2011-07-30T23:38:48Z	2012-12-31T18:25:57Z	"Scenario:

I've just uploaded a new theme to my theme directory and I now want to activate it on a site. I head to the Appearance › Themes menu for that site and, whoops, I forgot to activate it on the network first. Now I need to:

1. Click my name in the header
2. Click Network Admin in the dropdown menu
3. Click Sites
4. Find the site and click Edit
5. Click Themes

From there I can enable the theme.

We're not done yet though. We need to traverse a minimum of two screens to get back to the Themes menu of the site (even more if the admin bar isn't enabled) in order to activate it.

Two things would make this process easier:

1. A link from the Themes screen to the Themes tab of the site in network admin, so five clicks become one.
2. The ability to activate a theme from the Themes tab of the site in network admin.
"	johnbillion
Needs UI Work	20578	Allow users to delete a plugin without uninstalling		Plugins		normal	normal	Awaiting Review	enhancement	new	needs-ui	2012-05-01T01:18:35Z	2012-06-15T21:30:27Z	Sometimes, a user may need to delete plugin files without deleting all the plugin data.	scribu
Needs UI Work	18937	Add admin bar to press this bookmarklet		Press This	3.3	normal	normal	Awaiting Review	enhancement	new	needs-ui	2011-10-13T22:41:35Z	2011-11-20T16:24:25Z	With the admin bar now a permanent addition to the admin backend, I was thinking we should replace the old style header that's currently in the Press This bookmarklet to be the new admin bar. Since the width for the PT window is smaller, we could probably also just reduce the number of items added to it.	andrewryno
Needs UI Work	23747	Ordering Categories		Taxonomy		normal	normal	Awaiting Review	feature request	new	needs-ui	2013-03-12T10:14:05Z	2013-03-12T11:17:06Z	There should be provision to order categories. This will open up many possibilities to use with CustomPost types.	valllabh
Needs UI Feedback	18402	Confused page ordering if filter drops parent pages	nacin	Administration	3.2.1	normal	normal	3.6	defect (bug)	reviewing	ui-feedback	2011-08-14T15:34:07Z	2013-05-05T05:01:40Z	"= Problem =
In Wordpress's page management section, the page ordering is confused if a page filter drops a page parent.

Originally, I experienced this with the User Access Manager Plugin:
http://wordpress.org/extend/plugins/user-access-manager/
This plugin only shows allowed pages to the user.


= Example =
{{{
Page A
- Page A1
-- Page A1.1
-- Page A1.2
}}}

By dropping page A, the ordering becomes for example:

{{{
-- Page A1.1: Parent Page is Page A1
-- Page A1.2: Parent Page is Page A1
- Page A1: Parent Page is A
}}}

But should become:

{{{
Page A1: Parent Page is A
-- Page A1.1
-- Page A1.2
}}}

= Solution =
The confusion results from the function `_display_rows_hierarchical`
in `wp-admin/includes/class-wp-posts-list-table.php` which only adds pages to $top_level_pages whose parent is 0 – the wrong assumption here.

By adding pages to $top_level_pages whose parent is either 0 or doesn't exist in $pages we get a usable order:
So I added to the above-mentioned file:

{{{
#!php
function is_parent_in_pages( $parent, $pages ) {    
    foreach ( $pages as $page ) {
        if ( $page->ID == $parent ) return true;
    }
    return false;
}  
}}}

and changed `_display_rows_hierarchical`
from

{{{
#!php
if ( 0 == $page->post_parent )
    $top_level_pages[] = $page;
else 
    $children_pages[ $page->post_parent ][] = $page;
}}}

to

{{{
#!php
if ( 0 == $page->post_parent || !$this->is_parent_in_pages( $page->post_parent, $pages ))
    $top_level_pages[] = $page;
else
    $children_pages[ $page->post_parent ][] = $page;
}}}


And finally - in order to remove the leading dash of $top_level_pages - I removed
the $level++ in function `single_row` (same file) below ""`case 'title':`""


Small change, better user experience :)





"	erdnah
Needs UI Feedback	23295	Improved login expiration warning		Autosave		normal	normal	3.6	task (blessed)	new	ui-feedback	2013-01-25T22:49:45Z	2013-05-16T03:47:09Z	"The goal here is to improve the user experience when your login has / will expire, as discussed in [http://make.wordpress.org/core/2013/01/07/wordpress-3-6-autosave-and-post-locking/ WordPress 3.6: Autosave and Post Locking] and the [http://make.wordpress.org/core/2013/01/25/agenda-for-todays-autosave-and-post-locking-team/ autosave and post locking team meeting in IRC].

The suggested tactic is to integrate the [https://github.com/Penske-Media-Corp/pmc-post-savior/ PMC Post Savior] plugin into core.  That part should be pretty straightforward.

I think 3 valuable enhancements that are on the plugin's roadmap, but not yet complete would be:
* Alert properly on failed requests and lost connectivity.  If my internet connection has gone down and I'm still working, I should be alerted that I'm ""Working offline"" and my changes aren't being automatically saved.  I don't think this should be a blocking UI, but it should be obvious.
* Block publish/save until login has been verified.  Polling duration can be decreased (or maybe even done away with entirely) if we block the Publish/Save/etc actions until we've verified the user's cookie.
* Pre-emptive notification.  When approaching the user's login cookie expiration time, say 1 hour before, display a message and allow the user to extend their login.  For example, how banking sites notify you when you've been inactive too long and they're about to log you out."	mintindeed
Needs UI Feedback	15765	wp-admin/ms-sites.php doesn't indicate required fields		Network Admin	3.0.2	normal	minor	3.6	defect (bug)	new	ui-feedback	2010-12-10T16:14:49Z	2013-05-05T00:12:24Z	In '''wp-admin/ms-sites.php''', apparently all fields under '''Add Site''' are required, but there is no visual indication.	novasource
Needs UI Feedback	24056	Revisions: UI a bit unusable when you have ALOT of revisions		Revisions	trunk	highest omg bbq	blocker	3.6	defect (bug)	new	ui-feedback	2013-04-12T04:35:28Z	2013-06-01T09:27:40Z	"It could be a good idea to limit to last 25 or 50 revisions in the new UI.

I came across an extreme example of this on a WordPress.com site today, where I have something like 130 revisions for the Custom CSS post type. But, this same issue could apply to core post types, though—posts and pages—if the number is high enough.

When I loaded the revisions page, the ""calculating revision diffs"" message rans for a few minutes, and then ""arrow"" to move with was moved way off the screen to the right, creating a horizontal scrollbar.

The next and previous buttons are obscured by the long scrubber timeline graphic.

Screenshot attached."	lancewillett
Needs UI Feedback	16103	Blue Admin theme doesn't have enough contrast		Accessibility	3.1	normal	normal	Future Release	defect (bug)	new	ui-feedback	2011-01-05T03:51:32Z	2013-05-14T13:21:17Z	"The beautiful blue theme has a few parts that lack sufficient contrast to be useable by someone with color deficiencies.   Specific parts to follow.


See attached screen shots to get a better idea.  Highlighted areas lack contrast.  "	jorbin
Needs UI Feedback	24551	Post locking prevents collaboration		Administration	trunk	high	normal	Awaiting Review	defect (bug)	new	ui-feedback	2013-06-10T10:07:32Z	2013-06-10T20:21:22Z	"Occasionally I'll discuss the content of a post with a colleague by opening the editing screen for that post at the same time as my colleague. ''It may be that neither of us are actively editing it'', but we are discussing the content via VOiP or IM or whatever and both looking at it on the editing screen.

The new post editing lock prevents two people from having the editing screen for the same post open at the same time.

[[Image(http://i.imgur.com/PeZ60wd.png)]]

The above modal provides no option for dismissing the modal and viewing the editing screen. Preferably there would be a read-only mode of the editing screen, which disabled the buttons in the publish metabox.

I think this is quite important behaviour. Due to the nature of testing (ie. mostly solitary) it'll be unlikely that people have noticed the new behaviour until people start using it in production environments.

Thoughts?"	johnbillion
Needs UI Feedback	17635	Themes page should have search subtitle		Administration	3.2	normal	normal	Awaiting Review	defect (bug)	new	ui-feedback	2011-06-01T12:15:05Z	2011-06-01T14:26:16Z	"Most admin pages display the term that the user has searched for when displaying search results, but the Themes page (under site admin) doesn't.

[16525] seems to have excluded it in the AJAXified list tables, but gives no reasoning."	kawauso
Needs UI Feedback	21636	Add category dropdown to QuickPress in Dashboard		Administration	3.4.1	lowest	minor	Awaiting Review	enhancement	new	ui-feedback	2012-08-19T20:14:09Z	2012-08-31T18:28:22Z	"This would make QuickPress more useful to people who use categories instead of tags, have been meaning to do this for years.


"	jane
Needs UI Feedback	16105	Add info re mobile apps to admin	isaackeyet*	Administration		normal	minor	Future Release	enhancement	accepted	ui-feedback	2011-01-05T11:54:59Z	2013-04-17T01:14:56Z	Not sure if it belongs in Tools, or in Writing Settings (or whatever that shakes out to be when we redesign settings), or what, but there should be a screen somewhere in the admin that lists/links all the mobile apps, probably in same area as Press This is promoted. 	jane
Needs UI Feedback	23230	"Change hyphen in front of ""Draft"" to em dash"		Administration	3.5	normal	normal	Awaiting Review	enhancement	new	ui-feedback	2013-01-18T09:08:47Z	2013-01-25T20:08:00Z	"When a post/page/etc. is saved as a draft there is a ""- Draft"" appended after the title in the overview list in the dashboard.

Rather than using an hyphen (-) it should be an em dash (—) and ideally it should be translatable as the typographic rules for dashes varies with languages.

Rather than ""- Draft"" it should say ""— Draft"""	kkalvaa
Needs UI Feedback	17852	Collapsed menu fly-out headers should be clickable		Administration		normal	normal	Future Release	enhancement	new	ui-feedback	2011-06-20T03:13:00Z	2012-03-07T20:59:48Z	"When you hover over a collapsed admin menu icon, the extension of the icon is not clickable, only the submenu screens are.

This is the same behavior in 2.7 to 3.1, but I think it should be considered."	nacin
Needs UI Feedback	17470	Display warning when editing the page_for_posts page		Administration	3.2	normal	normal	Future Release	enhancement	new	ui-feedback	2011-05-17T06:27:13Z	2012-11-19T16:33:34Z	"I recently ran into a situation where someone was very confused by the page_for_posts setting and why their page edits were not being respected. It occurred to me that this feature is not terribly well described in the UI for users that don't already understand what it does.

The attached patch will simply add a warning as an admin_notice when you are editing the page that is specified as the page_for_posts page.

I used a class of error for the admin_notice, but updated might be more appropriate."	alexkingorg
Needs UI Feedback	6106	Post slug improvements	markjaquith*	Administration	2.5	normal	normal	Future Release	enhancement	accepted	ui-feedback	2008-03-05T21:08:21Z	2011-09-09T00:02:15Z	" 1. ~~Right now, a post ID is shown as the post slug unless a slug is manually entered.  Instead, it should show the dynamic slug generated from the title.~~  Ideally, as the title is updated.  (maybe using onblur to see if the typed-in title has changed, and doing a quick AJAX request to see what the dynamic slug would be).
 1. There is no way to tell the difference between a tentative slug, and a locked-in slug (either by choice, or by hitting ""publish"").  Perhaps the highlighting could go away and the slug could be bolded to indicate that it is set.

"	markjaquith
Needs UI Feedback	23233	Radio Button instead of Checkboxes on Comment Moderation option?		Administration	3.5	normal	trivial	Awaiting Review	enhancement	new	ui-feedback	2013-01-18T16:26:23Z	2013-01-19T03:13:00Z	"Hi! I've been a loyal Wordpress user for years. This is nothing urgent, but something that may improve the user experience.

In Settings > Discussion > Before a comment appears, there are two options: ""An administrator must always approve the comment "" and ""Comment author must have a previously approved comment""

Perhaps I have missed something here, but aren't these options pretty much either/or? If the first box is checked, it's rather irrelevant if the second box is checked, because the first checkbox would override it?

If I'm correct, shouldn't this be changed from a both/and checkbox to an either/or radio button?"	danielmount
Needs UI Feedback	9777	"Usability : add delete button to ""edit category"" menu"		Administration	2.7.1	normal	minor	Future Release	enhancement	new	ui-feedback	2009-05-09T22:56:39Z	2012-05-22T16:56:47Z	"Add ""delete"" button to ""edit category"" menu so i can delete the category and not only edit it. this is a very useful feature that is missing in this menu.

'''LOCATION:'''

Admin -> Posts -> Categories -> Edit Category

'''URL:'''

http://www.site.org/wp-admin/categories.php?action=edit&cat_ID=302
"	ramiy
Needs UI Feedback	24119	A uniform approach to Plugins / Themes settings		Administration	3.5.1	normal	normal	Awaiting Review	feature request	new	ui-feedback	2013-04-18T07:28:14Z	2013-04-26T22:16:55Z	"Yesterday [https://irclogs.wordpress.org/chanlog.php?channel=wordpress&day=2013-04-17&sort=asc#m2987650 in IRC] (#!WordPress), we had a conversation about rules that would help make plugins and themes easier to use, which in turn would make !WordPress easier to use.  

There isn't a rule or guideline whether a plugin should make a tab or link under settings or if it even has to do any of the above. We all agreed that all plugins should have a link under settings. If the plugin enhances a different part of the site, the settings page could just tell you where the plugin feature is located. 

We also agreed that themes should put features like a static front page under customize like most already do, though I heard Responsive doesn't. I was told it puts static front page under settings. If it is a theme feature, then logically you should be able to at least find a link to where the features are under themes. 

Implementing general rules for plugins and themes would make !WordPress easier to use. Does anyone else agree?
    "	ryansatterfield
Needs UI Feedback	24545	Fix Admin Layout When Displaying Errors		Appearance	trunk	normal	normal	Awaiting Review	defect (bug)	new	ui-feedback	2013-06-09T15:15:40Z	2013-06-10T02:52:45Z	Whenever a PHP error is displayed in the backend, it causes WordPress layout to screw up on the options pages by enlarging the font size and pushing the footer up to the bottom of the viewport so that it's not at the bottom of the page, instead, the bottom of the screen up so when you scroll to the bottom of the page, it's actually 3/4 way or 1/2 way up the page.	sunnyratilal
Needs UI Feedback	17275	UI: Missing comments count in admin screen		Comments	3.2	normal	normal	Future Release	enhancement	assigned	ui-feedback	2011-04-29T13:00:48Z	2013-02-23T11:29:14Z	See Attached image.	ramiy
Needs UI Feedback	23227	Properly reflect date and time formats throughout admin area		Date/Time	3.5	normal	trivial	Awaiting Review	defect (bug)	new	ui-feedback	2013-01-17T19:37:21Z	2013-01-18T14:13:53Z	"I have noticed several places in the admin area where the time & date formats set on the General Settings screen are not reflected. For example, on Page Edit, revisions have a hardcoded date format of `'j F, Y @ G:i'` and ajax autosaves use `'g:i:s a'` to show the ""Draft Saved at"" time (of note is the 24 hour vs 12 hour time). The ""Last Edited By _ on _"" time ''does'' properly use the time & date format options.

I have included a patch for the two examples above (comments/critiques welcomed), but there were a few others I noticed that may be somewhat more involved to fix. These include:
- Dates shown in the ""Date"" column of list tables (both the displayed and title text)
- ""Published on:"" date/time for pages (this may be tricky since editing the published time uses a 24-hour time format)
- ""Uploaded on:"" date/time shown in 'Save' metabox on Media edit screen

And there are probably other places I have missed as well.

Obviously somewhat low priority compared to other issues (and may be enhancement rather than defect), but I figured I'd bring it here and see what others thought."	bananastalktome
Needs UI Feedback	19745	Login Form Dropdown		General	3.3.1	normal	minor	Awaiting Review	enhancement	new	ui-feedback	2012-01-05T02:35:47Z	2012-01-06T02:38:39Z	It would improve user experience if the login button on the admin bar had a dropdown with a login form. This only applies to websites that show the admin bar to logged out users. 	dancole
Needs UI Feedback	20883	Translating all plugin headers?		I18N	2.6	normal	normal	Awaiting Review	defect (bug)	new	ui-feedback	2012-06-07T20:20:34Z	2012-11-07T13:40:32Z	"I am really not sure if translators should be able to localize Author, Author URI or Plugin name? Description is very helpfull, but why translating strings like ""Matt Mullenweg"" or ""http://ma.tt/"" which are in current admin localization file?

Related: #19597"	pavelevap
Needs UI Feedback	19716	Marking buttons and names in text		I18N	3.3	normal	normal	Awaiting Review	enhancement	new	ui-feedback	2012-01-03T13:37:18Z	2012-07-11T13:43:51Z	"There is no united way to mention buttons, tabs, names etc in texts. 

Sometimes there are quotes around button name:

{{{
If you would like to see more themes to choose from, click on the &#8220;Install Themes&#8221; tab
}}}

Sometimes not:

{{{
You must click the Save Changes button at the bottom
}}}

Maybe there should be any rules? For users it could be better to see button names someway highlighted (quotes, strong, etc) and everytime it would be clear that it is mentioned button..."	pavelevap
Needs UI Feedback	17866	Copy adjustment in wp-admin/includes/media.php		Media		normal	trivial	Awaiting Review	enhancement	new	ui-feedback	2011-06-22T02:54:50Z	2011-08-10T15:49:33Z	"""Link Image To:"" seems preferable to ""Link URL"" in wp-admin/includes/media.php (and it is more consistent as it is already used on the ""From URL"" tab when inserting an image)."	hew
Needs UI Feedback	22894	Need WordPress Media Uploader Stop or Cancel Button in WP Version 3.5		Media	3.5	normal	normal	Awaiting Review	enhancement	new	ui-feedback	2012-12-12T17:34:01Z	2013-06-14T06:53:58Z	"Today I was testing the new media uploader of WP 3.5 from post editor by clicking 'Add Media'. I clicked 'upload files' and I choose a big file from my computer by a mistake. But I did not want to upload that file. Then I wanted to cancel the uploading, but there is no stop or cancel button . Then I close the popup window and open again by clicking 'Add Media' button. I see the previous file is being uploaded yet. I choose another small file and both files upload are running.
[[Image(http://onetarek.com/wp-content/uploads/2012/12/stop-media-uploader.jpg)]]"	onetarek
Needs UI Feedback	11895	Allow more specific image size editing		Media		normal	normal	Future Release	feature request	new	ui-feedback	2010-01-14T15:12:28Z	2013-05-07T11:54:00Z	"Instead of allowing only some combinations of 'thumbnail', 'medium', 'large', 'full' I would like to have the ability to select which of these I would like to crop. So for example, only 'thumbnail' and 'medium'. With the current trunk this is not possible. I created a patch that adds this ability by changing the radio boxes of ""apply changes to"" in the image-edit page to checkboxes for each of the 4 possible sizes."	frankgroeneveld
Needs UI Feedback	24370	"Get the ""Set Featured Image"" Back"		Media		normal	normal	Awaiting Review	feature request	new	ui-feedback	2013-05-20T00:06:16Z	2013-05-21T06:12:03Z	"Since 3.4, the workflow of ""Set Featured Image"" has been significantly slower and less efficient. Up to 3.3, one could do:

1/ upload/find image
2/ click on set featured image
3/ click on insert image in post
dialog closes. done.

Now, the same thing requires

1/ upload/find image
2/ insert in post. dialog closes
3/ click on set featured image. dialog open
4/ potentially search again
5/ click on set featured image
dialog closes. done.

Since most blog posts only feature one image, it would make sense that we could do both ""set featured"" and ""insert in post"" while being in the insert media dialog. 

My writers have been pointing this out since we switch to 3.4, so we hope that this feedback will receive a positive attention.

Thank you!
A recently uploaded image would appear at the top when we open the Insert media dialog, but if we need to search the image again, it does hamper the workflow quite a bit.

"	hubertnguyen
Needs UI Feedback	16787	Removing title from a page (blank title) results in collapsed UI element in menu builder		Menus	3.1	normal	normal	Awaiting Review	defect (bug)	new	ui-feedback	2011-03-07T17:43:29Z	2013-04-22T03:21:45Z	"This minor issue has to do with the custom menu interface and titleless pages pages - this is handled somewhat gracefully when you initially create a titleless page using (pending) placeholder text, so I thought I would report it.[[BR]]
 

'''Issue preconditions'''

* WordPress 3.1
* Page created with title and body text
* Page added to a custom menu and saved[[BR]]

'''Steps to recreate'''
* remove title from the page from one of the ""edit page"" UIs
* visit the Menus interface
* you should now see a collapsed menu item in the menu creation interface (screenshot attached[[BR]]

Tested In: Chrome OSX 10.0.648.127 | Firefox OSX 3.6.13
"	jafoca
Needs UI Feedback	16075	Add Post Type Archives support in Nav Menus		Menus	3.1	normal	normal	Awaiting Review	enhancement	assigned	ui-feedback	2011-01-02T17:25:58Z	2013-06-15T21:11:55Z	"The setup: Take a post type (be it default or custom, in my case custom)

I wish to be able to add the archive page to the menu without adding the menu entry as hardcoded link (in my case /artists/) 

The problem: Adding it as hardcoded link does not bring the page up as current page in the menu when visiting the link. 

Example: 
http://www.blowmeup.ro/artists/ vs http://www.blowmeup.ro/crews/ "	matzipan
Needs UI Feedback	21674	"Please add ""plugins"" link under ""my sites > network admin"" in toolbar"		Multisite	3.4.1	normal	normal	Awaiting Review	feature request	new	ui-feedback	2012-08-23T19:13:46Z	2012-08-24T15:43:16Z	This would remove a click and I think a lot of people would enjoy the addition. I know I go to the plugins page more than users or sites combined.	archonic
Needs UI Feedback	23462	Add top Save Settings button for MU Site settings		Network Admin	3.0	normal	trivial	Awaiting Review	enhancement	new	ui-feedback	2013-02-13T05:21:47Z	2013-02-13T23:03:47Z	It's quite a long list, and it'd be awesome to have a button at the top to use, as well as at the bottom, so that one doesn't have to scroll all the way down just to save.	tw2113
Needs UI Feedback	18188	Make it easier to go between Dashboard and site edit pages	PeteMall	Network Admin	3.1	normal	normal	Future Release	enhancement	reopened	ui-feedback	2011-07-20T19:22:16Z	2012-04-18T21:01:14Z	"Each site in a network install has a Dashboard and a set of ""edit"" pages (Info/Users/Themes/Settings).

The ""edit"" page URLs are '''/wp-admin/network/site-''settingsName''.php?id=''id''''' where ''settingsName'' is '''info''', '''users''', '''themes''', or '''settings'''. The Dashboard URL is '''/''siteName''/wp-admin/''' where ''siteName'' is, I think?, the site's '''Path''' field as shown in '''/wp-admin/network/site-info.php?id=''id''''' but without the leading and trailing slashes.

The problem is if I am in the ""edit"" pages and want to go to the site's dashboard, I have to click on '''Sites''', then hunt down the site in the list, then click '''Dashboard''' while hovering the mouse over the site's row. I have a similarly convoluted process to get from a Dashboard to the ""edit"" pages.

Does this need to be so complicated? It would be nice for network admins to see links on every Dashboard or ""edit"" page that allows the user to go back and forth between the two easily.

Or even better, how about making the ""edit"" pages just show up as additional items in the Dashboard?"	novasource
Needs UI Feedback	20946	Improve 'Right Now' in Network Admin		Network Admin	3.4	normal	normal	Awaiting Review	feature request	new	ui-feedback	2012-06-13T21:02:14Z	2012-07-11T21:50:34Z	"It seems like there are a few things that could be done to make 'Right Now' in the Network Admin a little more informative and functional:

1. Add the current !WordPress version and applicable 'Update to X' and/or 'Update Network' buttons. Currently in NetAdmin the version is only displayed in the footer and (sort of) in /network/update-core.

2. List and link the site and user counts in similar fashion as the single-site 'Right Now' box

3. List and link theme and plugin counts"	DrewAPicture
Needs UI Feedback	19867	wp_dropdown_users() still not scalable		Performance	3.3.1	normal	normal	Future Release	defect (bug)	new	ui-feedback	2012-01-20T22:04:27Z	2013-06-11T10:44:05Z	#14572 made huge improvements to the performance of wp_dropdown_users(), however, on certain sites that have an unusually large set of authors, wp_dropdown_users() still isn't usable.  It either causes a memory error on the server, or potentially crashes the client browser due to content size.	prettyboymp
Needs UI Feedback	9683	Inconsistent font for Quick Edit labels		Quick/Bulk Edit		low	minor	Future Release	enhancement	new	ui-feedback	2009-04-29T22:02:15Z	2012-12-19T17:34:49Z	It's always bugged me that the labels for all the Quick Edit fields are a serif font and italic when all the other labels are sans-serif (aside from major headers and a few other elements).  Am I alone in this?	aaron_guitar
Needs UI Feedback	15583	wp-admin/options-discussion: make text consistent		Text Changes	3.1	normal	trivial	Future Release	enhancement	new	ui-feedback	2010-11-25T19:41:58Z	2012-11-19T16:44:25Z	In wp-admin/options-discussion almost all lines have no period at the end of the line, except two. Remove periods.	latz
Needs UI Feedback	22059	Making the admin bar responsive		Toolbar	3.4	normal	normal	Awaiting Review	enhancement	new	ui-feedback	2012-09-30T16:58:12Z	2013-02-28T18:32:30Z	"Hi,

This patch is made to add responsive layout to the admin bar. It comes from the ""Responsive adminbar"" plugin (http://wordpress.org/support/plugin/responsive-adminbar, thanks to skodnik).

Basically, I added some html tags to some menu items in the admin bar (using the ab-icon / ab-label combo) in order to handle the new icons I added to the ""admin-bar-sprite.png"".

I took the images straight from the plugin but some states are missing or some images should be changed as they are not appropriate (a ""heart"" for the network seems weird). I'm also missing the ""View post"" icon which now defaults to the ""Edit post"" one.

the CSS could be refactored I guess in order to avoid using ids.
I have not tested RTL!

Cheers from Hackday Lisbon :)

Jonathan"	JoN1oP
Needs UI Feedback	19826	Error behavior for deleting trashed posts is different for Bulk Delete versus Empty Trash		Trash	3.1.2	normal	minor	Awaiting Review	defect (bug)	new	ui-feedback	2012-01-13T18:38:00Z	2012-06-19T19:34:42Z	"Bug testing a custom blog build, but I may have located a bug with core (wp-die) Trash error messages.

Background:
*The blog has different users, with different roles.
*Issue occurs on trash page of a custom post type (post status = trash .../edit.php?post_status=trash&post_type=subject)
*Trash contains posts by both an admin role (who can add/edit/delete all custom posts) and an author role (who can add/edit/delete his/her own posts).
*Logged in as an author.
*Using Capability Manager Plug-in. (Tested bug without plugin too)
*Issue is specific to behavior after normal WP-error is thrown.

Issue:
Same WP error. Two different behaviors.

Different functionality occurs between using the Bulk Actions (Delete Permanently) > ""Apply"" button and the ""Empty Trash"" button, after a normal WP error is thrown. In the first case (Bulk Actions > Apply [1a below]), after I return from the error page and refresh the Trash page, all of the selected author pages have been deleted. No admin pages have been deleted.
In the second case (""Empty Trash"" [1b below]), after I return from the error page and refresh the Trash page, all of the selected author pages have NOT been deleted. No admin pages have been deleted.


Behavior:
1a. When I am logged in as an author and I highlight posts by both author and admin, and I attempt to delete using Bulk Actions (Delete Per.) > ""Apply"", I receive the WordPress error ""You are not allowed to delete this item."" ///After I return from the error page and refresh the Trash page, all of the selected author pages have been deleted. No admin pages have been deleted.

1b. When I am logged in as an author and I highlight posts by both author and admin, and I attempt to delete using ""Empty Trash"" button, I receive the WordPress error ""You are not allowed to delete this item."" ///I return from the error page and refresh the Trash page, all of the selected author pages have NOT been deleted. No admin pages have been deleted.

returning to the Trash page. Tested both scenarios.
1. I hit back on the browser, and return to the Trash page. I refresh the page.
2. Move to a different WP admin page, not the Trash page, then return to the Trash page.

Question, because the same text/error is thrown for both buttons, why is the functionality different? Both single functions seem appropriate, however, having both functions exist together instead of picking one behavior seems problematic."	jpbellona
Needs UI Feedback	13922	Add links to GUU from plugins and themes screens		Upgrade/Install		normal	normal	Future Release	enhancement	new	ui-feedback	2010-06-16T16:39:07Z	2012-12-24T04:34:33Z	"[[BR]]
Let's pimp the GUU (Dashboard > Updates) by having links to it from the plugins and themes screens so people who've missed it can see there's a single place to update everything. Woo!"	jane
Needs UI Feedback	16216	Hide core updater if running an svn checkout		Upgrade/Install		normal	normal	Future Release	enhancement	new	ui-feedback	2011-01-13T07:26:33Z	2011-05-12T03:39:48Z	The logic with this patch is if you are running an svn checkout, do not display the core updater code and instead display a reminder.	johnjamesjacoby
Needs UI Feedback	24040	"Use ""posts"" instead of ""topics"" (in tagcloud tooltips)"		Widgets		normal	minor	Awaiting Review	enhancement	new	ui-feedback	2013-04-11T01:56:36Z	2013-04-11T06:30:42Z	"Hello,

I suggest use ''post(s)'' instead of ''topic(s)'' [http://core.trac.wordpress.org/browser/trunk/wp-includes/category-template.php#L563 here].

""Topics"" is very related to forums (bbPress), while ""Posts"" are more general term I think?

Thanks"	Dianakc
Needs UI Feedback	18466	Reorganizing Widget Areas		Widgets		normal	minor	Awaiting Review	feature request	new	ui-feedback	2011-08-18T00:18:17Z	2012-02-06T15:56:29Z	"The widget-area boxes should be draggable as a whole. Meaning the user should be able to drag and drop the area boxes up and down as a way to rearrange the areas.

Sometimes I want to move the entire area's contents to a different area, and the best way would just be to drag the box to a different position in the vertical order."	audiobahn
Needs UI Feedback	24601	core.trac. landing page - suggestions to improve UI		WordPress.org site		normal	minor	Awaiting Review	enhancement	new	ui-feedback	2013-06-19T01:51:47Z	2013-06-19T01:51:47Z	"http://core.trac.wordpress.org/ is the intro to trac but it's pretty confusing with regards to the UI and the text.

Some small improvements to make it more clear and in line with wordpress.org's UI. Maybe make the text little more clear as well, the sentences are disjointed.

Example attached

[[Image()]]"	wycks
Needs UX Feedback	24475	The empty pattern attribute causes Webkit (Chromium 25) to style the URL and Email HTML5 form fields always with :invalid styles.		Comments	trunk	normal	normal	3.6	defect (bug)	new	ux-feedback	2013-05-31T23:20:55Z	2013-06-01T09:09:42Z	"Chromium Version 25.0.1364.160 Ubuntu 13.04 (25.0.1364.160-0ubuntu3)

`input type=""email"" pattern=""""`
`input type=""url"" pattern=""""`

This code is generated for the HTML5 form in Wordpress.

I am using bootstrap 3.0 CSS and it styles the `input:focus:invalid:focus` and `input:focus:invalid` with a red border and text. The issue is using the empty pattern variable the browsers marks everything as invalid. I simply removed the `pattern=""""` and the validation works, the browser then uses default pattern and the styles get removed as soon as the input in that fields are valid. I not tested it with manual pattern that will of course work as well.

Not sure what the reason is you used empty pattern, I am new to this thing, but you might want to remove it or include some default pattern to be able to correctly validate the Email and URL."	nico23
Needs UX Feedback	24405	Revisions needs a functional fallback for no-js		Revisions	trunk	high	blocker	3.6	defect (bug)	new	ux-feedback	2013-05-23T21:42:30Z	2013-06-06T20:21:57Z	"Since editing, comparing and restoring revisions requires javascript, we should not make it possible open revisions from the editing screen.

In the patch, I took a stab at adding an error message to the Revisions metabox as well as a solution for disabling the edit link if no-js. Not a huge fan of tacking on an extra span to `$date` just for no-js, but as far as I'm aware, we don't have a way to test for javascript support in PHP."	DrewAPicture
Needs UX Feedback	15926	Give header and background images alt tags		Accessibility	3.0	normal	minor	Awaiting Review	defect (bug)	assigned	ux-feedback	2010-12-20T22:16:12Z	2013-01-11T11:42:52Z	"''Section 1194.22 Web-based Internet information and applications: (a) A text equivalent for every non-text element shall be provided (e.g., via ""alt"", ""longdesc"", or in element content).''

To meet accessibility guidelines, the header images and backgrounds (when supported by a theme) need to be given user-editable alt tags."	jane
Needs UX Feedback	24042	Help text visibility in title input box is not intuitive		Accessibility	trunk	normal	normal	Awaiting Review	enhancement	reopened	ux-feedback	2013-04-11T03:45:04Z	2013-04-12T04:32:03Z	"Currently, the input box for title which shows on a new post creation page uses a label to display the help text- ''""Enter title here""''. This text disappears on focus and an that point of time, there is no place which points out that this input box is for the title.

This problem has been pointed out by a lot of people and it surfaced after the new Gmail design came out. The problems it generated are very similar and as you may have used it, there are no labels for the email recipients field and the subject field.

The issue is not very big as such but it does generate ambiguity in some cases. The solution to this would be to have the label as an overlay on the input, which can slide/move to a new position on focus. And placeholder text can be used as help text. This way the help text will be visible at the start and the label will be visible throughout."	aniketpant
Needs UX Feedback	21414	"Use the ""Keyboard Shortcuts"" checkbox in the user profile to turn on/off all custom shortcuts"		Accessibility		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-07-29T20:24:36Z	2012-10-14T11:42:23Z	"Custom keyboard shortcuts can be very handy not only for better accessibility but for faster access to many actions that usually require ""mousing"". For example we could potentially add shortcuts to access the top menu items or the more commonly used toolbar items.

However many of the available keystrokes (modifier [+ modifier] + letter) are already in use. Even worse, different shortcuts are in use in different browsers and different OS.

It would be good to let the users decide whether to enable them. As we already have a checkbox for the comment moderation shortcuts, best would be to make it ""global"". For now that would only affect TinyMCE."	azaozz
Needs UX Feedback	22104	High contrast admin colour scheme		Accessibility		normal	normal	Awaiting Review	feature request	new	ux-feedback	2012-10-04T17:35:54Z	2012-11-20T16:57:21Z	"We should consider bundling a high contrast admin colour scheme with WordPress to aid accessibility for the visually impaired.

Some discussion on this has taken place previously on IRC but nothing much beyond that.

Some potential points of discussion:
 * Is anyone in the [http://make.wordpress.org/accessibility/ WordPress accessibility group] an expert on accessibility for the visually impaired? Can we get someone on board for some expert guidance?
 * Is an admin colour scheme sufficient? Would any JavaScript need altering too? If so, would an admin colour scheme suffice as a starting point?

Related:
 * [http://www.timobrienphotos.com/2009/03/hich-contrast-admin-color-scheme-for-wordpress/ A high contrast admin theme plugin]
 * [http://wordpress.org/support/topic/admin-color-scheme Support forum discussing admin theme for visually impaired user]
 * [http://wordpress.org/extend/plugins/easy-admin-color-schemes/ Easy Admin Colour Schemes plugin]"	johnbillion
Needs UX Feedback	24324	Placeholder support to login form		Accessibility		normal	minor	Awaiting Review	feature request	new	ux-feedback	2013-05-12T09:59:13Z	2013-05-14T14:44:34Z	wp_login_form isn't support placeholder attribute yet. It would be good. Isn't it?	m_uysl
Needs UX Feedback	9698	WordPress back end is not accessible		Accessibility	2.8	normal	major	Future Release	task (blessed)	new	ux-feedback	2009-05-01T18:15:41Z	2012-02-20T20:50:25Z	"The WordPress back end violates several WCAG accessibility guidelines, so it cannot be considered accessible to people with disabilities.

Guidelines: http://www.w3.org/TR/1999/WAI-WEBCONTENT-19990505/

Not being an accessibility expert, I am not sure of all of the violations. But guideline 6.3 states ""Ensure that pages are usable when scripts, applets, or other programmatic objects are turned off or not supported. If this is not possible, provide equivalent information on an alternative accessible page.""

This means that you should be able to do all functions in the WP back end with JavaScript disabled.

As of 2.8-bleeding [11148], there are several things you cannot do with JavaScript disabled:

1) Upload and attach media to a post. You can upload media in the Media section, but the media upload section of the post edit screen is missing without JS, and I see no way to attach it to a post.

2) Add tags to a post or change which tags are on a post. The tags section is totally blank without JavaScript. (It could at least have the default plain-text field that is there behind the scenes and hidden).


"	jhodgdon
Needs UX Feedback	19527	Add New Category Problem While Posting		Administration	3.3	normal	minor	Awaiting Review	defect (bug)	reopened	ux-feedback	2011-12-13T05:26:08Z	2013-01-22T01:19:25Z	"When adding new category, while you are making a post, If a category is added under a parent category, it doesn't show properly that the new category is under the parent category.

It has been added correctly, but it doesn't show properly the first time."	jainprateek
Needs UX Feedback	18530	Browser update dismiss setting ignored with JavaScript disabled		Administration	3.2.1	normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2011-08-27T15:41:24Z	2013-01-22T01:14:57Z	"When working on a corporate desktop you can not update your browser. When freely deciding about when to upgrade you might not even want to upgrade.

Therefore a user setting has been introduced to remove the nag warning. E.g. my linux distro is perfectly ok with it's firefox and it's taken care of by the pacakager. For my OS, I have the latest version.

I needed to press dismiss (with JS enabled, the related report is #17766).

What has been missed is to not display that nag if javascript is disabled. The setting gets ignored.

How to Reproducde

  * Setup a WP 3.2.1 Blog.
  * Log into admin with a Firefox 3 browser.
  * Enable Javascript.
  * Dismiss the Nag.
  * Logout and close the Browser.
  * Restart the Browser.
  * Disable Javascript (if you need to).
  * Log into Dashboard.

Result: Browser Update Nag is displayed.

Expected Result: Browser Update Nag is not displayed as specified by the user."	hakre
Needs UX Feedback	16475	Displaying submenus in custom taxonomy of active parent		Administration	3.1	normal	normal	Future Release	defect (bug)	new	ux-feedback	2011-02-07T02:26:20Z	2011-07-22T09:27:13Z	In a hierarchical taxonomy, if a top level item in the hierarchy is selected when editing a post, after save that item's orphaned children and grandchildren will also show as top level items. It flattens the hierarchy.	nick4fake
Needs UX Feedback	18264	Future private posts listed as already published with future date specified		Administration		normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2011-07-27T00:05:27Z	2013-02-04T09:27:17Z	"Setting a post to private, and scheduling it for some future date or time, results in the stamp that the post was ""Published on (future date)"" in the publish module.

The discussion on tickets #5608 and #9136 suggests that all private posts are published immediately (and privately), and that this is intentional. So, it's misleading and confusing to report that it already was published on some future date.

In source:trunk/wp-admin/includes/meta-boxes.php#L163, I suggest we replace:

{{{
else if ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published
		$stamp = __('Published on: <b>%1$s</b>'); }
}}}

with:

{{{
else if ( 'publish' == $post->post_status ) { // already publicly published
		$stamp = __('Published on: <b>%1$s</b>');
	} else if (  'private' == $post->post_status ) { // published privately
		$stamp = __('Published privately'); }
}}}"	chrisrudzki
Needs UX Feedback	15981	Quick edit (and other actions) need to cancel AJAX actions	garyc40	Administration	3.1	low	normal	Future Release	defect (bug)	assigned	ux-feedback	2010-12-26T05:17:36Z	2010-12-26T21:03:24Z	"Right after you click to paginate, sort or try to search something, you may be inclined to click another link on the page. This happens often when I'm browsing, and on a server with a relatively slow AJAX round trip, it can happen quite commonly.

Problem: If you open Quick Edit, then the ajax results should noop. There might be other actions, but this one in particular does not lead to another page (which obviously would kill the ajax).

The reverse is also an issue. You can search, paginate, or sort when Quick Edit is open, and you lose your edit. This might be bad when quick editing a comment, as you could be losing actual content. Searching and paginating might be explicit actions, but it's not difficult to accidentally click a th and trigger a sort, especially if the first row's quick edit (or bulk edit) is open.

I'm not sure what to do here, other than a JS popup for any time a Quick/Bulk Edit is open, asking you if you want to lose your changes.

So again, two things:

 - Kill the AJAX action if Quick Edit is opened. I would consider this lower priority.

 - 'Lose your changes' confirmation for quick edit and bulk edit before an AJAX action. (We can probably fire the AJAX action and trigger the alert simultaneously, but delay processing the results until the confirm() is true.)"	nacin
Needs UX Feedback	15414	Rework admin searches and make them compatible with no-js again	ocean90*	Administration	3.1	normal	normal	Future Release	defect (bug)	accepted	ux-feedback	2010-11-13T13:53:19Z	2010-12-10T19:36:56Z	"I'm working on #15355 and found some problems with the searches. I will use this ticket to add the patches, one patch for each problem which I have found.

A list with what it not working:
 - ~~Comments search doesn't work without JS~~ fixed
 - ~~Users search doesn't work with and without JS~~ fixed
 - http://grab.by/7nC2 I like the idea with the new tab ""Search Results (1)"", but you will see it only in no-js version and only for themes and plugins search. We should add it for all searches, AJAX search and with no grey bgcolor to be consistent. '''Or''' we must respect the active tab like we did it on comments search, so if 'Sticky' tab is active search only through sticky posts and not all as it is yet. Consistent is the word here.
- Behaviour after a search without any results: With JS it's an empty table and with no-js we have the message ""No xxx found."""	ocean90
Needs UX Feedback	20007	Add option for new user registration notifications		Administration	3.4	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-02-10T06:15:35Z	2012-11-22T03:36:08Z	"This patch adds an single checkbox option to WordPress's Settings > Discussion page, allowing users to quickly toggle new user registration notifications/emails on or off.


While the notification function is currently pluggable, allowing non-technical users to easily toggle this feature themselves is both intuitively simple, and should prove generally advantageous to the community."	Veraxus
Needs UX Feedback	17360	Change text from Options to Settings		Administration	3.2	normal	minor	Future Release	enhancement	new	ux-feedback	2011-05-09T23:31:56Z	2011-12-06T04:47:31Z	"In various admin screens, change test from options to settings.

"	michaelh
Needs UX Feedback	18569	Custom header images should deletable from the Custom Header page	danielbachhuber*	Administration	3.3	normal	normal	Awaiting Review	enhancement	accepted	ux-feedback	2011-09-01T18:30:22Z	2011-12-06T05:11:52Z	"Currently, if a theme supports custom header images and a user uploads one of their own images, they need to go to the Media library in order to delete the image. This is not intuitive, there's no text in the admin explaining this step, and it's a problem if they want to rotate randomly through their custom header images.

It would be nice of the user could delete images they've uploaded from the Custom Header page directly."	danielbachhuber
Needs UX Feedback	21856	Hide category selection when no posts are available		Administration	3.1	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-09-09T14:38:10Z	2012-11-13T20:18:02Z	"Just an idea that popped up while testing #21015. The months dropdown gets hidden when there are no posts available, so why not hide the category dropdown list too?

Might be a bit confusing though, when certain elements are not showing when you first start using the screens that these elements are used. But showing something that does not do what it looks like is even more confusing, I think."	CoenJacobs
Needs UX Feedback	21132	"List tables' ""select all"" should let you really select all, regardless of screen options"		Administration		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-07-02T04:38:38Z	2012-07-05T15:13:48Z	"The select all checkbox in list tables selects all the items in your current view.  Usually what I really want is to select all the items on all the pages.

As a hack, I'll often leave the screen options setting for items per page on something really high, like 1,000.  Unfortunately this means the tables are often really slow for no benefit (most of the time I don't need them all).  A better solution would be a way to intelligently select all items without needing to show them on the page.

The best example of this that I know of is Gmail, which adds a line above the list of emails when you click the select all box that looks something like this: ""All 50 conversations on this page are selected. Select all 653 conversations in Spam"".  The second sentence is a link that, as expected, selects all of your emails that fit the current view, regardless of paging.  Screenshot attached."	evansolomon
Needs UX Feedback	21516	Make the entire .check-column the click target for the checkbox		Administration		normal	minor	Awaiting Review	enhancement	new	ux-feedback	2012-08-08T03:34:38Z	2012-10-22T15:27:26Z	Sometimes checkboxes are quite small. In various list tables, checkboxes are wrapped in a .check-column. Why not make the entire .check-column clickable, in case people (like me) miss?	mitchoyoshitaka
Needs UX Feedback	21774	Page attributes structure		Administration		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-09-02T14:58:57Z	2012-10-08T17:45:53Z	"Currently, the ""Page Attributes"" module is organized like this:

* Parent
* Template
* Order

Wouldn't it make more sense to put ""Parent"" and ""Order"" together, as both are closely similar and related to the site structure?

We could have:

* Template
* Parent
* Order

or maybe

* Parent
* Order
* Template"	Lorangeo
Needs UX Feedback	23444	Publish actions not readily available after scrolling when editing a post		Administration		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2013-02-11T01:37:14Z	2013-02-11T02:26:42Z	When editing a post in 2-column mode, the user is forced to scroll to the top of the screen. As publishing is always the final action while editing a post, the user should have the metabox available regardless of the user's scrolling.	ericlewis
Needs UX Feedback	17133	Register ctrl + s event for plugin/theme editor		Administration	3.1	normal	minor	Future Release	enhancement	new	ux-feedback	2011-04-14T12:20:34Z	2011-12-06T04:07:54Z	Often when modifying code or writing a post using the wordpress editor I instinctively hit ctrl + s to save it. Up pops the save website dialog which I then have to close. In Gmail when I hit ctrl+ s it saves the email to drafts. I think a similar thing would be useful for wordpress.	jcnetsys
Needs UX Feedback	7485	Terrible UX design on XFN section of Write->Link pages		Administration	2.6	normal	normal	Future Release	enhancement	assigned	ux-feedback	2008-08-08T17:02:49Z	2012-01-06T01:43:58Z	"Regarding the XFN section on the Write-Link pages:

The UX on this section is fairly terrible. We give the user an editable ""rel"" field and then don't let them edit it via javascript. Note that if you disable javascript and then edit that field, then your changes are indeed saved and then even show up on the resulting pages correctly. That javascript just won't let you manually edit the field. 

I propose that the javascript on this section be changed to allow manual editing of that field, and to make the checkbox/radio sections just add/remove the relevant bits from the field when they are selected/deselected. Result should allow user to manually insert stuff into the rel field and leave those manual insertions unaltered when changing the radio/checkboxes, unless they conflict with the selections being made directly.

Also, side note, would be nice to add a nofollow checkbox to this section as well, to allow easy addition of nofollow to the rel field, which would be handy for the somewhat over-controlling SEO oriented people. ;)
"	Otto42
Needs UX Feedback	22633	Update Icon Inconsistency		Administration		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-11-29T11:37:57Z	2012-11-29T14:44:27Z	"The update icon at the moment is 2 arrows in a circle in the admin bar ( aka the refresh icon ). In Network Admin it's a pair of tools.

I'd suggest we change these to the same icon rather than have 2 inconsistent icons. I'd also suggest we use a single arrow as the new icon, a refresh/recycle icon isn't as clearcut as it could be ( and what if a caching plugin implements a refresh button to the admin bar? ).

We could follow Google by using an arrow pointing upwards, or we could follow Apples convention with a downwards pointing arrow in a circle"	TJNowell
Needs UX Feedback	22466	Want to View Pending Comments From Dashboard		Administration		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-11-15T18:49:39Z	2012-11-19T16:25:06Z	"This is a very awkward aspect of WordPress that I'm just attempting to articulate for the first time:  In the Recent Comments dashboard widget, there is no way to view fully the pending comments.

What it should link to:

* View Comment
* View Post
* Approve Comment
* Edit Comment
* Spam Comment
* Trash Comment

What it does instead:

* Visitor's site or e-mail address
* Edit Related Post
* View Related Post
* Reply to Comment
* Approve Comment
* Edit Comment
* Spam Comment
* Trash Comment

So there are several obvious points of confusion here.

Why would I want to reply to a comment that is pending approval, still hidden, and not even fully displayed to me?

Why can't I see the whole comment?  It only shows me an excerpt here, and in order to actually read the comment I have to click over to Comments on the admin menu and find what I'm looking for manually.

Why does the most prominent link for the comment take me to the post editing screen?  When is this ever useful?

Why is the post link displayed as a tiny little ""#""?"	miqrogroove
Needs UX Feedback	21189	We should improve the nonce failure page		Administration		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-07-08T09:07:17Z	2012-07-08T13:14:00Z	"Currently when a admin nonce expires, in most cases we catch this condition using `check_admin_referer()` which presents expired nonces with a rather ugly uninformative error message:
[[Image(http://f.cl.ly/items/26271g453h2y0K393Y1l/Screen%20Shot%202012-07-06%20at%2012.14.25%20PM.png)]]

I'd like to propose that we make this page a bit nicer to end users - who although are unlikely to hit it (I hope) it'd be nice to let them know what's actually happened.

My initial approach would be to change the page to 
- Include a !WordPress logo, and a link back to the Admin area
- Change the message to something like ""The link you've followed has now expired, In order to complete the action you were performing, please return to the previous page, refresh it, and attempt to follow the link again."".
- In the case where this is happening within the !WordPress admin, it would make sense to have some kind of UI on the page as well - This can currently be done by not using `check_admin_referer()` and using `wp_verify_nonce()` directly and redirecting to an error page.

The current message could often cause confusion, as of course the user wants to do it (They just followed a link!) but as there's no continue button, they're left confused."	dd32
Needs UX Feedback	18287	wp-login.php - Logo URL should be relative (affects MultiSite)		Administration	3.2.1	normal	normal	Future Release	enhancement	new	ux-feedback	2011-07-29T00:31:49Z	2013-05-05T04:50:28Z	"If you go to your domain.com/wp-login.php page it has a WP logo that links back to domain.com

If you're using multisite and go to subsite.domain.com/wp-login.php, it links back to domain.com

If you're using multisite and you MAP a domain and go to mappeddomain.com/wp-login.php, it links back to domain.com

I can see why this would have been done.  It points to network_home_url() which is perfectly sensible for MOST situations.  But maybe we should just honor the site on which people are trying to login, so that it's all relative.  Given the link on the bottom (back to...) goes to the relative site, this is a logical change.  I would say to keep the EMAILS for password resets as is, since the network is in charge of it all, but the front end interface should be consistant.

I did a quick test and this works fine on Single and Multi (as expected). So ... here's my first diff!"	Ipstenu
Needs UX Feedback	16434	Give site admin ability to upload favicon in Settings, General		Administration	3.1	normal	normal	Future Release	feature request	new	ux-feedback	2011-02-01T16:57:34Z	2013-02-14T18:13:55Z	"WordPress has come a long way in terms of making it possible for someone completely non-technical to create a professional web site for a person or business. One of the little things that is still annoyingly technical is adding a favicon. WordPress.com does this via the Blavatar feature, a name I wouldn't really want us to adopt b/c this is more CMS-oriented, but the ease of uploading an image, scaling and cropping it, then having it become the favicon is something I do want to adopt. Keeping it a theme-based thing means the non-technical can't control it for their sites, which is lame.

"	jane
Needs UX Feedback	23554	Change Header Delete Behavior		Appearance		normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2013-02-20T07:11:27Z	2013-02-20T08:57:30Z	When clicking the Remove header button, it should remove the header image from the list of images for rotation as well as remove from the currently selected image.  Currently you must delete the image from the media library (which may be several hundred or thousand images deep) to remove it from the list.	tribuseric
Needs UX Feedback	13792	Invalid reply link from comment admin when comment nested level > max		Comments	2.9.2	normal	normal	Future Release	defect (bug)	reopened	ux-feedback	2010-06-09T07:05:56Z	2010-11-13T17:53:57Z	"I have a blog with nested comments enabled, max depth of 4. When the last level comment is posted, it no longer contains a Reply link.

However, in the Comment admin, the Reply link is still present. If used, this new reply will show up at the very bottom of the comment list once posted (even if other newer regular comments are entered, this new reply will still show up at the very bottom).

The bug is, basically, that Comment admin doesn't respect the max nested value."	archon810
Needs UX Feedback	21845	Losing comment reply by accidentally clicking on another comment		Comments	3.4.2	normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2012-09-08T13:17:20Z	2012-09-17T22:31:50Z	"This is a usability bug.

When replying to a comment in the Edit Comments (wp-admin/edit-comments.php) page, double-clicking on another comment will open that comment for editing and wipe away the reply you were writing. 

If you want to highlight a word to copy from the comment that you are replying to this can be done by double-clicking the word. So completely by accident your reply is wiped out. This occurred on wordpress.com so I'm guessing their using the latest 3.4.2 version."	icc97
Needs UX Feedback	21010	View Post Link on edit-comments.php	mordauk	Comments	3.4	normal	minor	Awaiting Review	enhancement	new	ux-feedback	2012-06-18T15:10:27Z	2012-12-23T03:47:41Z	"Anytime I approve a comment, I'm always irritated by the fact that there isn't a ""View Post"" link anywhere that links to the live post on the front end. The title of the post, such as ""Hello World"", is shown, but it links to post.php.

A lot of times I want to read back through the original post before I answer the comment, and I'd prefer to do that on the live site, not the admin, so I think there needs to be a ""View Post"" link next to the post title that links to the live site."	mordauk
Needs UX Feedback	16252	Allow comment reparenting to fix poor threading		Comments		normal	normal	Awaiting Review	feature request	new	ux-feedback	2011-01-15T23:12:25Z	2012-04-29T10:48:16Z	"For the OCD among us, it would be super nice to be able to edit the comment_parent, to properly thread comments made in the wrong place/threading order.

Choose your own UI, but even just a numeric editor in the Quick Edit area would be a huge enhancement."	Otto42
Needs UX Feedback	21563	"""Save as"" button disappearing on edit/new post screens"		Editor	3.4.1	normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2012-08-13T15:15:58Z	2013-03-11T22:01:41Z	"When switching ""visibility"" from ""public"" to ""private"", the ""Save as (draft/etc.)"" button disappears. It doesn't come back when switching to ""public"" anymore.

[[Image(http://i.imgur.com/EExwB.png)]]"	F J Kaiser
Needs UX Feedback	19947	Copy paste behavior in Visual mode differs from HTML mode		Editor		normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2012-02-02T13:13:11Z	2012-02-02T13:13:11Z	"Copy a random html page from a random site including links and images and paste it into the WYSIWYG Editor Visual mode and it will include the images and links. Basically it (mostly) looks like the copied page. If you paste the same into the WYSIWYG Editor HTML tab and it will strip out _all_ HTML markup and just leaves the plain text, without the images or links.  

Expected: 
I would expect the Visual and HTML mode of the WYSIWYG editor to behave the same, either both use the code (displaying the results of the markup code in the Visual tab and the markup code itself in the HTML tab) or both strip out all html.   

"	BjornW
Needs UX Feedback	13942	Logged-out notice in post edit page is easily missed		Editor	3.0	normal	normal	Future Release	defect (bug)	new	ux-feedback	2010-06-17T11:25:40Z	2012-09-27T15:42:48Z	"When a user gets logged out during post editing, a small warning appears bellow the post editor, next to the word count. This warning states that changes will not be saved until user logs in again - but it's a small notice and is very easily missed.

Since this can be potentially catastrophic for users writing long posts while relying on auto-save, a bigger and more prominent notice probably makes more sense.

=== Repro ===

ENV: WP 3.0

This bug can be reproduced in WordPress 3.0 by opening two tabs – one tab with a blog’s Dashboard, and another tab with the same blog’s New Post page. In the Dashboard, click Logout, then switch to the New Post tab. Here, enter any text in the post’s title, then hit Tab to switch to the editor. This will trigger the permalink preview, which will in turn trigger the notice about being logged out: “ALERT: You are logged out! Could not save draft. Please log in again.”

=== Additional Details ===

The notice comes from wp-admin/admin-ajax.php, in line 36.

Currently behavior was introduced by #7630, where it was already noted ""maybe something more obvious needed"""	RanYanivHartstein
Needs UX Feedback	16819	Accessibility: Internal Linking behaviour in Editor / TinyMCE		Editor	3.1	normal	normal	Awaiting Review	enhancement	reopened	ux-feedback	2011-03-10T10:52:26Z	2012-10-22T15:58:33Z	"'''Issue'''

The default behaviour of the new 'Internal Linking' feature is to auto-insert the title attribute as a duplicate of the link text.

This is not best-practise and, contrary to some beliefs, doesn't actually aid accessibility.

'''Solution'''

The title field should be blank by default and only included if the uses enters data.

'''Why?'''

Title text is only useful when it is *different* to the actual link text AND provides additional information.  Duplicating the link text in this fashion just adds fuzz to the page.
"	stencil
Needs UX Feedback	15139	Texteditor: link button always enabled		Editor		normal	normal	Future Release	enhancement	assigned	ux-feedback	2010-10-17T08:27:06Z	2012-01-06T01:32:10Z	"When you make a link you are forced to write the text in the editor and select the text before the link button is usable. I have seen users fail to understad this and getting stuck at creating links.

It might be better if the link button was enabled as default and if no text was selected a textfield with the link text appeared in the insert/edit link.

Another alternative is that the link text textfield (just mentioned) is visible all times but if text is selected it's written there by default. Otherwise it's left blank."	olalindberg
Needs UX Feedback	13821	Changing visibility to password-protected without entering a password does not warn user	kapeels*	General		normal	normal	Future Release	defect (bug)	accepted	ux-feedback	2010-06-10T13:48:48Z	2012-10-01T17:42:25Z	"Tested on r15182.

If the status of a post is set to Password Protected, and a password is not specified before the user clicks the OK button in visibility and then either publishes, saves, or updates the post, no warning is given to the user that not setting a password forces the post or page to remain Public.

In fact, if updating a post, and this is the only change made, the success message (1) for updating the post appears instead, even though no change was made to the post.

If the post was previously published as Private, and switched to Password Protected without entering a password, then saved, the post switches to Public on save instead of remaining Private.

Either a failure message upon updating or a warning to the user before saving should be displayed to the user to remind them that they didn't properly set a password.

To reproduce the last case above:

1. Create a post. Publish it as Private.
2. Edit the post. Change the visibility to Password Protected, but do not enter a password. Click OK.
3. Update the post.
4. The post visibility will be changed to Public."	markel
Needs UX Feedback	18503	Delete-Plugin Error Validation Clears Form Values		General	3.2.1	normal	minor	Awaiting Review	defect (bug)	new	ux-feedback	2011-08-23T22:43:22Z	2011-09-01T17:17:22Z	"When bulk-deleting a set of plugins, if an error is encountered - all selected values are lost.

Process: 

1. Go to plugins overview screen, select several (active) plugins to delete.
2. From the bulk-action dropdown menu, select ""delete"", then ""apply""

Expected behaviour:

Error message: ""You cannot delete a plugin while it is active on the main site."" - Check marks are preserved, so you simply select ""deactivate"" and click on ""apply"" again.

Actual behaviour:

Error message: ""You cannot delete a plugin while it is active on the main site."" - All check marks lost, and you have to start all over again - which is a pain for sites with lots of plugins."	JohnONolan
Needs UX Feedback	15619	General Settings Tab Not Allowing trailing URL slash to be stored in Site & WordPress address (URL)		General	3.0.1	normal	normal	Future Release	defect (bug)	reopened	ux-feedback	2010-12-01T02:35:11Z	2011-01-21T10:15:11Z	"**Thank you for all of the efforts you've made regarding plugins easier to maintain - I deeply appreciate it.** 

When WordPress is installed in a subfolder, attempts to add the trailing slash currently will not save properly. From this URL:
http://www.domain.com/wordpressinstalledinfolder/wp-admin/options-general.php

The General Settings Tab - WordPress address (URL)
The General Settings Tab - Site address (URL)

Want to enter ""http://www.domain.com/wordpressinstalledinfolder/""
***it won't let me enter a trailing slash on the end like it will in other URL fields on the site.***

Request: Please tweak this field to allow storage of folder trailing slash.




"	dsquared
Needs UX Feedback	19383	Hide post formats next to post titles if the active blog theme does not support post formats		General	3.1	normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2011-11-28T18:16:12Z	2011-11-29T18:47:55Z	"If I'm using a theme that supports post formats—e.g. Twenty Eleven—then next to each title on `wp-admin/edit.php` I'm able to see not only the title name but also the post format that corresponds to its respective post.

If I switch to a theme that does not support post formats at all I am still able to see post formats associated with their respective posts.

This is not good for a few reasons:

* Showing a post format next to a title while a theme that doesn't support post formats is active is confusing. ""Why does my post have the word Image/Link/Status/Quote by it? What does that mean?""
* There is no way to edit or remove a post format associated with a post when a theme that does not support post formats is active, so the labels are useless.

When a theme that does not support post formats is active those format labels should be hidden. The posts can of course still retain their formats in case a user switches back to a theme that supports theme, but otherwise they should be hidden."	philiparthurmoore
Needs UX Feedback	15732	Media Settings page description is unclear		General		normal	trivial	Future Release	defect (bug)	new	ux-feedback	2010-12-08T15:26:37Z	2010-12-11T13:41:51Z	"This is pretty trivial, but it's an easy fix, so I thought I'd throw it out there.

Currently the Media Settings page reads, ""The sizes listed below determine the maximum dimensions in pixels to use when inserting an image into the body of a post.""

That isn't true, it should probably read ""The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.""

The only reason this came up, is a client of mine was confused when she changed the large dimensions to ""434x434"" and the image she had uploaded previously w/ the dimensions of 800x732 did not give her the ""Large"" option.

I'm not sure anyone else in the world has ever had this problem. So the severity is definitely trivial."	layotte
Needs UX Feedback	21089	Add admin url to install notification email		General	3.4	normal	minor	Awaiting Review	enhancement	new	ux-feedback	2012-06-27T21:50:40Z	2012-06-29T23:07:34Z	"I've seen a number of individuals inquiring as to the login url of their WordPress site for administration purposes.  Let's give it to them by changing:

Your new WordPress site has been successfully set up at:

http://wordpress.url

You can log in to the administrator account with the following information:

Username: admin
Password: The password you chose during the install.

We hope you enjoy your new site. Thanks!

--The WordPress Team
http://wordpress.org/

to

Your new WordPress site has been successfully set up at:

http://wordpress.url

You can log in to the administrator account with the following information:

Username: admin
Password: The password you chose during the install.
Location: http://wordpress.url/wp-admin

We hope you enjoy your new site. Thanks!

--The WordPress Team
http://wordpress.org/"	georgestephanis
Needs UX Feedback	23257	Add plural versions of Post Format strings		General	3.5	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2013-01-22T00:59:30Z	2013-02-04T08:45:32Z	"To make it easier for theme authors to create meaningful titles for post format archive pages, we could extend `get_post_format_strings()` to also provide a standardized set of plurals.

I'm not entirely sure whether the plurals I used in the diff are the ones we actually want to go with (apparently there is no plural of 'Audio'?), but the change is fairly simple and is backwards compatible.

See [https://github.com/Automattic/_s/pull/137 this discussion] for additional context."	obenland
Needs UX Feedback	16185	Bulk Actions Dropdown Box JS Sync Ajax-Tables		General	3.1	normal	normal	Future Release	enhancement	new	ux-feedback	2011-01-11T11:15:33Z	2012-07-26T19:25:41Z	"It would be an increase in usability - if JS is enabled - to sync the changes between the bulk-action-drop-down on top of the table with the one below the table.

In my scenario I increased the amount of entries to over 100. So you need to scroll. So to set the bulk action on top and then you might think twice, need to check something, scroll down to the list to check the last entry and you want to press the bulk submit down below.

That combo box is still on the default value right now. To spare additional clicks, it would be nice that it got synched with the one on top.

Related: #14579; #15580"	hakre
Needs UX Feedback	17478	Disable Comments for Pages / Disable Comments for Pages Site-Wide		General	3.1.2	normal	normal	Awaiting Review	feature request	new	ux-feedback	2011-05-17T19:04:25Z	2011-11-08T16:23:44Z	"Ladies and gentlemen, 

it's been suggested on the Forum that I start a new ticket here. I think it's a good idea. 

Here's a couple of suggestions that I believe if implemented would greatly improve WordPress functionality and popularity:

1) Make the Display Widget  for pages visible by default, the way it was before the WordPress 3.0. Many non-blog WordPress website owners, and many bloggers, want the comments for pages disabled, but have no idea how to do that, because the Discussion checkbox in the Screen Options panel for Pages  is deselected by default. As a result, most people new to WP 3 have no idea that Discussion Widget even exists, and have trouble disabling comments on pages. 

Disabling such comments is very necessary in many situations. For example, a page that includes only a contact form, shouldn't have comments. Most WordPress users do not need their portfolios, or their ""About"" pages commented – and so on. 

2) Create the checkbox that would allow to toggle all comments (old and new) comments for all pages with one click – and a separate checkbox that would allow to toggle all comments (old and new) for all posts – site-wide. 

Many WordPress based business websites have hundreds of pages, and it would save a lot of time if the owner or designer could just disable the comments by deselecting one checkbox. I do realize it can be easily done by commenting out the comments in the code, but wouldn't it be nicer to have it as a checkbox option? 

Some of the owners of such sites want to have a blog on their site, too - and want to have comments as a traditional part of blog functionality. That's what comments for pages and posts should be toggle-able site-wide independently from each other. 

For best experience, the post comments should also have a toggle checkbox. Some owners may want to disable comments for all posts site-wide, too. 

To see where this request is coming from, please Google ""disable comments for pages wordpress"" and you will see that the issue does cause quite a bit of confusion. 

Also please see this thread of the WordPress support forum about: http://wordpress.org/support/topic/disable-comments-for-page-option/

I hope this suggestion helps to improve WordPress – already the greatest open source CMS platform.

Best regards, 

Dimitri Vorontzov
 "	Dimitri Vorontzov
Needs UX Feedback	17834	Quick Edit of Hierarchal Terms		General		normal	normal	Awaiting Review	feature request	new	ux-feedback	2011-06-18T12:47:23Z	2011-09-10T01:41:21Z	Would be nice if the Quick Edit function for hierarchal terms included the ability to change the parent. In fact, you could pretty much eliminate the Edit function altogether by doing this.	DragonFlyEye
Needs UX Feedback	19737	"""What's New"" screen confusing for minor updates"		Help/About	3.3	normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2012-01-04T17:49:14Z	2013-01-22T01:34:46Z	"As [http://www.wptavern.com/wordpress-3-3-1-fixes-security-exploit reported on WPTavern], when you ugprade to 3.3.1, the ""What's New"" screen makes it seem like all the new features were introduced in 3.3.1 and not 3.3.

We should add a header below the short summary to the effect of ""New features introduced in 3.3""."	scribu
Needs UX Feedback	13313	"WP import: ""Upload file and import"" should be deactivated until a filename is entered"		Import	3.0	low	minor	WordPress.org	defect (bug)	new	ux-feedback	2010-05-09T22:10:55Z	2012-10-31T16:15:09Z	"WP import: ""Upload file and import"" should be deactivated until a filename is entered

ENV: WP trunk 3.0-beta2-14526 [[br]]
Mac OS / Firefox 3.6.3

== Additional Details ==

Same issue with wp-admin/media-new.php (browser upload)

"	lloydbudd
Needs UX Feedback	22994	Remove 'blogroll' from the import options		Import	3.5	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-12-18T17:53:16Z	2012-12-18T20:52:24Z	"Now that we've dropped links (#21307), we shouldn't encourage importing them. It'll just confuse the newbies.

This will require a change to http://api.wordpress.org/core/importers/1.0/, so while we can clean up /wp-admin/includes/import.php (attached) it won't matter till that's scrubbed. Maybe upgrade that to 1.1 so people who are on older WP are left alone?"	Ipstenu
Needs UX Feedback	15219	WordPress importer UX/UI review		Import		normal	normal	WordPress.org	enhancement	new	ux-feedback	2010-10-26T09:22:52Z	2012-07-23T19:08:41Z	"The newly improved WordPress WXR importer needs some UX love to improve it further!

A few things that I know need improving:

'''Results and feedback'''
Currently you will either see ""All done. Have fun!"" or a list of errors and ""All done. Have fun!"". Clearly this isn't really enough information. The old importer listed every single item being imported and associated errors, which I thought was too much information for a large import. My thoughts was to do something like show the red error message block if any errors occur and have a JS enabled link in this to show a more detailed list of items that were not imported, followed by a table of results displaying the number of succeses, failures and skips (for content already present) for each of the separate sets of data imported.

'''Error strings'''
These need to be useful, there's not much point in saying something went wrong but not giving enough information to diagnose the real issue. They also need to be displayed well (see above), an example of a weird one is trying to import a WXR 1.0 file with an author with a display name non-[a-zA-Z].

'''Other'''[[BR]]
The fix for #13627 needs to be done properly. The role a new user will be imported as is now being displayed but I don't think it's prominent enough yet. You'll see that it's mentioned on step two when choosing how authors will be imported, but if you're someone like me who often only skims instructions it is pretty easy to miss. Maybe some bold/highlighting and another reminder on the final screen?

Anything else people notice as not clear enough when giving the importer a test."	duck_
Needs UX Feedback	14356	Better string for onbeforeunload event dialog		JavaScript		lowest	normal	Future Release	enhancement	new	ux-feedback	2010-07-19T18:53:15Z	2010-11-18T10:57:46Z	"The WP string for this now is:

''The changes you made will be lost if you navigate away from this page.''

The resulting dialog is:

''Are you sure you want to navigate away from this page?

''The changes you made will be lost if you navigate away from this page.

''Press OK to continue, or Cancel to stay on the current page.

''[OK] [Cancel]

Which is repetitive and, it seems to me, confusing.

I was thinking we could change our string to something not repetitive that complements better the default strings.  E.g.:

''You have unsaved changes that will be lost!

Patch available upon request."	demetris
Needs UX Feedback	24352	"It is not obvious what does ""Edit"" mean in the info (bottom) part of the media selection window"		Media	3.5	normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2013-05-16T14:34:33Z	2013-05-17T01:25:05Z	"1. Edit a post 
2. click ""add media""
3. select a media
4. the bottom part of the window contains an ""edit"" link

It seems like Edit mode just lets the user rearrange the order of the selected media. Maybe it is my english but when I rearrange icons on my desktop I don't think about it as editing. The use of ""Edit"" in that context just feels strange and confusing."	mark-k
Needs UX Feedback	24573	File URL in Media Upload		Media	3.5.1	normal	normal	Awaiting Review	enhancement	reopened	ux-feedback	2013-06-13T06:43:48Z	2013-06-13T09:23:36Z	"Display a ""details"" link in addition to ""edit"" link after the file upload is complete.
Clicking edit link, switching to a new tab/window to find out the URL of uploaded file is annoying for a lot of users.
A ""details"" link can work inline and display file URL and basic information like dimensions, attachment URL etc.
Those who REALLY need to edit the file may use ""edit"" link."	puneetsahalot
Needs UX Feedback	22966	Show admin-cropped thumbnails instead of WordPress-cropped thumbnails		Media		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-12-16T22:22:59Z	2013-06-13T09:20:32Z	"Used to be able to see which images have been cropped (and which ones haven't) in image search results. Now have to click 'edit image' and check the image individually.

It's valuable for the publisher to see what his/her readers will see on the front end of the site when the 'thumbnail' function is called (either publisher's hard-cropped image or full un-cropped image). Useful especially for publishers that are pulling images from a time before 'thumbnails' existed in WP.

Main reason this is an issue is that when an un-cropped thumbnail is selected as the featured image, it will be stretched/distorted to dimensions of thumbnail settings in function.php."	beerpulse
Needs UX Feedback	16435	When only one image has been uploading, make Enter submit the Insert into Post button		Media	3.0.4	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2011-02-01T17:06:29Z	2013-04-08T14:25:02Z	"When I didn't use !WordPress for my website I had an online site creator and when you had uploaded a pic and edited the proporties and then pressed enter the pic placed itself.
But in !WordPress you get an error that no pic is selected. 

So tje idea is that when you have just uploaded a pic and selected no other that the just uploaded pic is placed when you press enter"	JonezJeA
Needs UX Feedback	17221	Adopt a selected page hierarchy to a custom menu		Menus	3.1	normal	normal	Future Release	enhancement	new	ux-feedback	2011-04-23T11:14:12Z	2011-05-26T15:40:33Z	"I don't know if this is a bug or a FR but I think it would be handy to have a option that when you make a costum menu that the parent and child pages stay in order. In other words: when you made a game page as parent and WoW as childpage that when you add those two pages at the costum menu editior that is automatic orderend as the parent child page

ps: sorry for bad english"	JonezJeA
Needs UX Feedback	23832	Nav menu screen text tweaks		Menus	trunk	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2013-03-20T22:38:08Z	2013-03-21T17:23:57Z		johnbillion
Needs UX Feedback	14325	"No possibillity to add a ""Home""-link to the nav_menu when there are no Pages"		Menus	3.0	normal	normal	Future Release	enhancement	new	ux-feedback	2010-07-15T22:36:13Z	2012-03-07T20:10:38Z	"If you want to add a ""Home"" link to the new nav_menu in Wordpress 3.0 you can't do so, if there is no Page created yet. If there is no Page, there is also no ""View All""-Button in the Pages-Section to view the ""Home""-Link.

In my opinion the ""Home-Link"" in the Pages-Section is very hidden anyway."	lundj
Needs UX Feedback	13335	The menu's + tab should be to the right of the menu navigator		Menus	3.0	low	minor	Future Release	enhancement	new	ux-feedback	2010-05-11T09:43:53Z	2010-11-15T20:25:27Z	"If you create enough menus to occupy the full width of the screen and beyond, you end up with navigator tools that allow to scroll left/right in order to navigate the menus you've created.

The last menu item is the + tab is the last available item. Would it not make more sense for it to always be visible?"	Denis-de-Bernardy
Needs UX Feedback	14331	Tweaks to menu setup page		Menus	3.0	normal	normal	Future Release	enhancement	new	ux-feedback	2010-07-16T21:30:45Z	2012-08-07T10:47:34Z	"It would be great if you could select a parent Page and ""Automatically add children"" to the menu.  

In a similar fashion, it would be great if the Menu could then automatically add any new children Pages created under that Parent."	mrmist
Needs UX Feedback	15855	Dropdown isn't shown when doing a user 'removal'		Multisite		normal	normal	Future Release	defect (bug)	new	ux-feedback	2010-12-16T23:38:12Z	2012-04-27T18:14:51Z	"Steps to reproduce:

0. Have a MultiSite install
1. Go to wp-admin/users.php and delete a user
2. A confirmation screen appears, with only a ""Confirm"" button.

Expected behaviour:

The user dropdown is shown, asking to assing the user's posts to a different user.

Currently, you end up with authorless posts."	scribu
Needs UX Feedback	16609	"Misleading ""Error establishing a database connection"""		Multisite	3.0.5	normal	minor	Awaiting Review	defect (bug)	new	ux-feedback	2011-02-21T17:31:10Z	2011-02-21T17:31:10Z	"Multisite install shows:

""Error establishing a database connection""

Even if credentials are OK when it doesn't find the domain entry in wp_blogs table, this is very misleading, would be helpful to have the same meaningful error message that /wp-admin shows.

I posted this problem originally at http://wordpress.org/support/topic/misleading-error-establishing-a-database-connection"	roberto.carvajal
Needs UX Feedback	20846	Multisite: Network Users can post comments without being members of the site		Multisite	3.0	normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2012-06-05T14:35:41Z	2012-11-02T23:02:52Z	"This is probably an 'ever since inception' issue and I can replicate it on 3.4

Setup:

Have a user added to your network but '''not''' to a site (domain.com/test).

Set up domain.com/test to only allow registered users to comment. Remember, we've not added this new user to the site, just the network.

Log in as that user and go to domain.com/test

Oh look! You can comment as a 'registered' user.

This should be check for 'Is this a user ''and'', if multisite, is this user a member of the site?'

It's that or the wording needs to be clearer that anyone registered on the network can comment."	Ipstenu
Needs UX Feedback	17164	More elegant handling of site 'archive' options for MultiSite		Multisite	3.1	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2011-04-18T15:08:50Z	2012-12-16T06:14:58Z	"Right now you have a few options with MultiSite blogs

1) Spam
2) Deactivate
3) Archive
4) Delete

Spam is easy to understand, and should be marking the admin and site as spam. Delete ditto, hi.

Deactivate and Archive are weird though and almost seem backwards.  Deactivate means to turn OFF (like deactivating a plugin).  Archive implies that you're making a site read-only.

Right now, if you change a site to 'deactivated' it actually shows up as DELETED and the front end has the message ""This user has elected to delete their account and the content is no longer available.""  Clearly the verbage on the network/sites.php page needs to be updated (and perhaps the front end to 'This site has been deactivated.' to be consistant).

If you 'Archive' a site it kicks it to a paler pink in the sites.php page (though the 'Archived' text is white and nigh impossible for me to read) and the front end says ""This site has been archived or suspended.""

It's rather illogical there.  Archive SOUNDS like it should be making things read-only (and turning off commenting and posting if possible).  Otherwise it should just be 'Suspend', and at that point, why have two options that pretty much do the same thing from the front-end perspective?"	Ipstenu
Needs UX Feedback	20377	Show notice that site Network Admin is viewing is disabled		Multisite	3.0	normal	minor	Awaiting Review	feature request	new	ux-feedback	2012-04-06T14:47:29Z	2012-11-17T16:15:48Z	"In Multisite, site admins can click ""delete site"" from their Tools menu, but this actually just sets it to disabled.  If a Network Admin tries to view the site, they can still view it just fine.  This can be pretty confusing/misleading.  I think it would be an improvement if while a Network Admin is viewing a Disabled site, that a message is displayed along the lines of:

This site is currently Disabled. [re-enable link]"	MadtownLems
Needs UX Feedback	24378	Filter to hide post format icons in list table		Post Formats	trunk	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2013-05-20T23:32:20Z	2013-06-09T04:53:56Z	"True to form of being able to hide the Post Formats UI, we should have a like-filter to hide the post format icons in the list table.

Patch attached."	DrewAPicture
Needs UX Feedback	19859	"""Bulk Edit"" Missing The Ability To Edit Tags"	gavinwye*	Quick/Bulk Edit		normal	normal	Awaiting Review	enhancement	accepted	ux-feedback	2012-01-20T02:56:24Z	2012-12-20T00:41:06Z	"Though I can add, remove and edit ""categories,"" I cannot do such actions to ""tags"" inside of /wp-admin/edit.php

So basically, I'm interested in a ""bulk tag editing"" GUI for the WordPress admin.

===

I was hoping to find out the status of this feature (planned, not planned, etc) but it appears that no one has spoken about this feature on the WordPress Trac.

Is there any interest in adding this feature? And could the respondent please provide any details on why or why not?

Thank you for your time."	ademos
Needs UX Feedback	11328	Issue with double click on comment's text when quick edit is used		Quick/Bulk Edit	2.9	normal	major	Future Release	enhancement	new	ux-feedback	2009-12-04T21:12:35Z	2011-04-22T21:26:47Z	"When you edit comment via quick edit or when you write a reply on ""Edit Comments"" page and double click on text of other comment, used quick editing is turned off and quick editing is turned on other comment, with all text which you wrote lost.

I noticed this when I wrote a reply on one comment and when I wanted to copy a word from that comment by double clicking on it, my whole reply was lost.

So enabling of quick edit via double click on comment's text should be  disabled when quick edit is used."	dimadin
Needs UX Feedback	14803	Admins should be warned if authentication keys and salts have the default phrase		Security	3.0.1	normal	normal	Future Release	enhancement	new	ux-feedback	2010-09-07T15:20:17Z	2012-08-06T00:50:33Z	"WordPress already warns admin users if any of the eight authentication keys/salts are not present in the wp-config.php.  (See `secret_salt_warning()` in wp-admin/includes/ms.php)  While performing that check, WP should also see if any of the keys/salts are using the default string of ""put your unique phrase here"".

The default string is pre-set for all eight keys/salts that ship in wp-config-sample.php.  While the inline documentation indicates that those values should be changed, there is no notice or prompting to alert/remind the admin if the default string is left intact.

Bear in mind that `wp_salt()` (in wp-includes/pluggable.php) ignores the keys/salts that use the default phrase or are blank strings, so security isn't compromised.  However, if we want the admins to define secure phrases in wp-config.php, we should make them aware when that's not the case.

The attached patch modifies `secret_salt_warning()` to also check that the keys/salts aren't using the default phrase and aren't blank strings (same check as done in `wp_salt()`).  If any are, the warning message provides a link to the wordpress.org secret key service.

See the attached image to see an example where I've removed LOGGED_IN_SALT from wp-config.php (the error message for that is already what WP generates) and where I've left the default phrase in place for AUTH_KEY and AUTH_SALT and set NONCE_SALT to '' (triggering the error message added by the attached patch).
"	coffee2code
Needs UX Feedback	18553	Counting of categories doesn't work without refreshing?		Taxonomy	3.2.1	normal	minor	Awaiting Review	defect (bug)	new	ux-feedback	2011-08-31T11:39:03Z	2011-09-03T09:17:55Z	"If you add a new category or delete one the number of total categories stays on the original number. For exemple, when you have 7 categories then in the corner it says '7 items'. When you delete one, you have 6 items but '7 items' is still displayed.

(Chrome 15.0.816)

1) Go to your categories
2) Add one and look to the number of items, IT WILL NOT CHANGE!

So this count for adding normal categories and child ones..."	jonezjea
Needs UX Feedback	16022	Search does not look for tags		Taxonomy	3.0	normal	normal	Future Release	enhancement	reopened	ux-feedback	2010-12-29T15:28:51Z	2011-03-23T17:07:08Z	"While 3.1 Beta Testing I ran over this:

Ajax search is to search the (paginated) table. The table has tags in it's display. Search is not looking for those.

----


'''How to reproduce?'''

 1. Edit a Post.
 2. Add a new Tag that doesn't exist so far. 
 3. Update the Post.
 4. Go to Posts.
 5. Search for the just created Tag.
 6. You get an empty search result.

----

See #14579 and #15580
"	hakre
Needs UX Feedback	13767	Custom background uploader doesn't highlight max upload size		Template	3.0	normal	normal	Future Release	enhancement	new	ux-feedback	2010-06-07T13:43:30Z	2010-10-28T09:34:17Z	When uploading a file from the custom background handler, you cannot tell in advance if it'll succeed or not if the file is too large. WP should advertise the max size, and the available space where relevant (see also #13765).	Denis-de-Bernardy
Needs UX Feedback	22961	"""Allow link notifications from other blogs (pingbacks and trackbacks.)"" description is misleading"		Text Changes		normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2012-12-16T14:39:50Z	2012-12-17T11:34:24Z	"The description for enabling pingbacks and trackback is ""Allow link notifications from other blogs (pingbacks and trackbacks.)"". Which is not correct a more appropriate description should be ""By default new posts can recieve notification (pingbacks and trackbacks) from other blogs"".

The current description is broken in particular when the option is not set which leads to the assumption that the pingbacks and trackbacks are block while they are not as they are still enabled for posts which were create before the option was disabled."	mark-k
Needs UX Feedback	13433	"Replace ""admin"" with ""administrator"" or ""administration"""		Text Changes	3.0	normal	normal	Future Release	enhancement	new	ux-feedback	2010-05-18T12:54:25Z	2012-11-19T16:44:19Z	"Since ""administrator"" is right name for user who administrates site, we should replace occurences of ""admin"" because of consistency and because it adds confusion since ""admin"" is also used instead of ""administration"".

You can easily see current 17 occurences by searching on GlotPress (eg. [http://tinyurl.com/39m7xeh])"	dimadin
Needs UX Feedback	18400	"Suggested label change for ""Stick this post to the front page"""		Text Changes		normal	minor	Awaiting Review	enhancement	new	ux-feedback	2011-08-14T01:19:53Z	2012-11-19T16:46:13Z	"In the Publish meta box, it would be more clear to say ""Stick this post to the top of the front page"" compared to saying ""Stick this post to the front page""."	designsimply
Needs UX Feedback	18780	"The caption ""Comment author must fill out name and e-mail"" is ambiguous"	gabrielhtc	Text Changes		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2011-09-26T14:46:14Z	2013-02-15T13:38:47Z	"
== Observation ==

Users tend to think that if they uncheck that option, the name and email fields will not be displayed.


== Problem ==

The caption ""Comment author must fill out name and e-mail "" in the ""Other comment settings"" of the Discussion settings is ambiguous.


== What is expected ==

With the current caption, users expect that the name and email fields aren't shown.


== What happens instead ==

The name and email fields are still displayed, but they are now optional instead of being required. Some of the themes do not explain whether the fields are required or optional, so the users think that unchecking the option has no effect.


== Solutions ==

* Changing the caption to a less ambiguous one such as: ""Name and email is optional for guests comments""
* Make sure that the themes show clearly which field is required or not to be able to post the comment."	gabrielhtc
Needs UX Feedback	20211	Description text for custom header upload may be misleading in some contexts.		Themes		normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2012-03-10T00:52:52Z	2012-03-24T18:23:34Z	"The paragraph in the ""Upload Image"" section of Appearance -> Header contains the following text: ""You can upload a custom header image to be shown at the top of your site instead of the default one.""

This is a bit misleading in the event that the active theme does not include a default image.

An easy solution may be to remove the following text from the sentence: "" instead of the default one"". What do you think?"	mfields
Needs UX Feedback	20516	"Ability to remove a previously-used Header Image from the list of rotating ""random"" header images"		Themes	3.4	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-04-22T18:12:24Z	2012-04-22T21:38:55Z	"Being able to add a bunch of header images and then selecting the ""Random"" option in the Appearance > Header section is awesome! However, it is equally important to be able to remove one/some/all of those header images from the list of rotating images. The current UI does not support this.

An approach that would be the least disruptive to the current UI layout would be to enable a ""remove from list"" link (I wouldn't use the word ""delete"" because it's not deleting the media resource) when the user hovers over the image. The link could appear below the thumbnail, much as the Post's Quick Edit link appear under the list of Posts/Pages."	TomAuger
Needs UX Feedback	18959	Allow choosing multiple header images		Themes	3.3	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2011-10-15T21:32:15Z	2012-06-25T16:01:02Z	"Please, see small screenshot :)

[[Image(http://trueimages.ru/img/0f/5b/b7cf5f11a2786fc804521503268.png)]]

Description: This is the theme TwentyEleven. I want choose multiple header images, (for example 4,5,6), but i cannot. Only random or only one. Thanks."	wikicms
Needs UX Feedback	20157	"Gallery: define a ""Cover image"" that will appear in archive pages or a blog home page"		Themes		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-03-02T18:04:09Z	2012-08-06T00:00:27Z	"Today, if you create a gallery with X images, you cannot define one specific image to appear as cover image for the whole gallery.

Couldn't we use {{{the_post_thumbnail}}}, and say that the cover of the album is the Featured image when there is one defined?

That's something that can be defined in the theme (see file attached), but I think it would be nice to have an option in core to define a cover image for each gallery.

What do you think?"	hd-J
Needs UX Feedback	10154	"floatting {{feed_image}} in ""wp_list_categories()"""		Themes	2.8	normal	minor	Future Release	enhancement	new	ux-feedback	2009-06-14T08:43:09Z	2010-09-27T19:06:28Z	"Using {{{wp_list_categories('feed_image=rss.gif')}}}  or {{{wp_list_categories('feed=RSS')}}} displayes a list of categories with links to feed.

The problem is, that we can't define who will come first ""cat feed"" or ""feed cat""?

Adding ""feed_location"" parameter may solve this problem.
"	ramiy
Needs UX Feedback	16239	Improve switching between visual editor and html mode when text set immediately after more tag		TinyMCE	3.1	normal	normal	Future Release	defect (bug)	reviewing	ux-feedback	2011-01-15T04:33:10Z	2012-05-02T16:43:32Z	By request from Matt. When switching from the visual editor to html mode, text immediately after the more tag will be set directly next to the comment. In this case, we should set the text on the next line.	koopersmith
Needs UX Feedback	11863	Trashed items interfere with page/post slug generation		Trash	2.9	normal	normal	Future Release	enhancement	reopened	ux-feedback	2010-01-11T12:40:38Z	2012-09-23T19:10:06Z	"Create a static page called test. Trash it. Create a new static page called test. It'll want to use the slug ""test-2"" instead of the expected ""test"".

This is extremely confusing for non-technically oriented users."	Denis-de-Bernardy
Needs UX Feedback	19783	"Add a ""Processing..."" overlay to update iframes"		Upgrade/Install		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-01-09T04:42:06Z	2012-01-09T04:47:46Z	"On the back of #19781, i thought i'd raise this:

> We should also investigate a iframe overlay that contains a ""Working.. please wait"" graphic that clears once the content of the iframe starts loading, This should help ease the pain of not being sure if the update process has started on servers that force gzip (and as a result, provide no user feedback until the process is complete) - See #18525 and #18239 for examlples of that

Fast partial build updates don't experience this problem, but branch-to-branch updates can take awhile on some hosts, it'd be a nicer user experience for those users affected by the above."	dd32
Needs UX Feedback	16492	Improvements to the Wordpress Update Process		Upgrade/Install	3.0.5	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2011-02-08T16:45:48Z	2011-07-17T21:54:10Z	"I've some suggestions on how to improve the update process (usability). I guess its not enough for separate tickets so I'm filing them together.

 * When updating Wordpress, a plugin or a theme, I'm being asked for the password to the FTP server. You should add a note there that the password won't be stored in the database. I guess many/some users are uncomfortable with storing their FTP password in the database and won't use the ""update tool"" for this reason.
 * Rename the button ""Update Automatically"" to ""Update Wordpress"". ""Update Automatically"" sound like ""Update now and update automatically in the future when a new Wordpress (and also plugin/theme?) version is available."" This should make the button's function a little bit clearer.
 "	manski
Needs UX Feedback	15738	Automate Security Releases		Upgrade/Install		normal	trivial	Future Release	feature request	new	ux-feedback	2010-12-08T21:11:49Z	2012-12-03T23:27:46Z	"When security releases are published, several less tech-savvy users might neglect to update in fear of breaking their site.  In reality, security/maintenance releases don't change the core API and shouldn't break anything*.

We should have an option (disabled by default) that allows these X.X.1-style security updates to happen in the background.  This will keep sites updated and secure and (hopefully) prevent the inevitable ""I wanted to wait to install 3.0.2 and someone hacked my site while I was waiting"" support requests.

The option should be disabled by default, but when users are on the update screen they should see an option to ""install security releases automatically.""

Major releases should always require an explicit action from the user to update the site as they can break themes and plug-ins and could potentially update database schema.

* Except in the rare occasion where a developer hacks core."	ericmann
Needs UX Feedback	20947	feature request: one-click update for core, themes and plugins (all in one)		Upgrade/Install		normal	normal	Awaiting Review	feature request	new	ux-feedback	2012-06-13T22:48:50Z	2012-06-13T22:49:28Z	I'd love to have the one-click update be truly one-click so that you can click once and update core, themes and plugins all at once as opposed to having to initiate three different updates.	jkudish
Needs UX Feedback	16518	Add Media/File description improvements for multi-selections feature		Upload		normal	normal	Future Release	enhancement	new	ux-feedback	2011-02-10T17:24:13Z	2011-11-10T18:33:28Z	"This was suggested to us for WordPress.com by a coworker at Automattic and we realized this could actually be a worthy core improvement.

{{{
Would it be possible to add some wording to the Add Media screen in WP.com
blogs to tip users off that they can upload multiple images at once by holding
down CTRL in Windows or CMD on a Mac? Stumbled upon this nifty feature
myself today under the category of “here goes nothing, let’s see if this works.”
}}}

Opening the ticket until I can add a patch (or someone else does)."	stephdau
Needs UX Feedback	7634	Need a way to cancel an upload edit		Upload	2.7	normal	major	Future Release	enhancement	reopened	ux-feedback	2008-08-28T21:51:18Z	2013-01-09T20:11:49Z	When you click a media upload, you have to either save it, or use the back button in the browser.  Feels like a dead end.	markjaquith
Needs UX Feedback	19227	clicking the pinkynail/title in the media-upload.php library tab does not show the full media info.		Upload	3.3	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2011-11-10T20:30:35Z	2011-11-10T20:31:40Z	"I am using the latest nightly build.

I am not sure if this is supposed to work this way, but it does have the 'toggle' class and UX wise it should I think.

Steps to reproduce:
1: Open a post/create a new post
2: Click the Upload/insert media button.
3: in the media iframe click 'Media Library'
4: Click on an 'pinkynail' or title in the list

Nothing happens. I would expect clicking the 'pinkynail' or title to activate the same 'toggle' as the 'show' link does as we read left to right, our eyes are drawn to the image and we are generally choosing an image here, so our instinct is to click that. Plus this is how it works in the 'full' (i.e. non-iframe) version. It could also do with css to make the cursor 'pointer'.

Tested in latest versions of Chrome and Firefox in Windows 7"	davidosullivan
Needs UX Feedback	22993	Admin - users without a role are difficult to find		Users	3.5	normal	normal	Awaiting Review	defect (bug)	new	ux-feedback	2012-12-18T17:32:21Z	2012-12-20T06:21:38Z	"There doesn't appear to be a filter to display users *without* a role (see the screenshot). The ideal solution would be to add a filter for ""None"".

[http://i.imgur.com/3S5pH.png]"	logikal16
Needs UX Feedback	16833	Signup mechanism shortens usernames without warning		Users	3.0	normal	normal	Future Release	defect (bug)	new	ux-feedback	2011-03-11T15:09:23Z	2012-08-29T23:40:31Z	"When a user signs up for an account on a wordpress blog, if their chosen username is longer than the limit, wordpress chops of the end of the username, without warning the user, and without offering the user the opportunity to choose again.

Steps to reproduce:  Go to a wordpress blog, sign up with a long username, and read the confirmation email.  An example: forum.xbmc.org, which has a limit of 15 characters."	hughcharlesparker
Needs UX Feedback	16020	Upload custom avatar for user in Dashboard	nacin	Users		normal	minor	Future Release	feature request	reviewing	ux-feedback	2010-12-29T08:07:53Z	2013-01-29T20:18:15Z	It would be nice to be able to upload a custom avatar for a user in the WordPress Dashboard rather than making each user sign up for a Gravatar account and upload the image to that account.	computerwiz908
Needs UX Feedback	15204	JavaScript Validation should trim values and set focus on invalid field		Validation	3.1	normal	normal	Future Release	defect (bug)	assigned	ux-feedback	2010-10-24T15:46:28Z	2011-01-13T21:09:02Z	"If invalid fields are found after validation, focus should be placed on the first invalid field. Field values should be trimmed to check for truly empty values.

Also worth noting, the (mostly same) validateForm is located in both common.js and wpAjax.js."	batmoo
Needs UX Feedback	15394	"Ancient ""Are you sure you want to do this"" now confusing"		Warnings/Notices	3.1	normal	trivial	Future Release	defect (bug)	new	ux-feedback	2010-11-11T21:51:26Z	2012-09-15T00:14:05Z	"The default failing nonce message did not pass the wife test. Asking ""Are you sure you want to do this?"" now that there is no longer ""OK"" and ""Cancel"" buttons is confusing and my wife just asked me ""How do I tell I'm sure?""

Not sure about the best wording, I took the same approach as Twitter's expired OAuth token links with a message that does not let user think there is something to confirm."	ozh
Needs UX Feedback	20770	Introduce AJAX response message		Widgets	3.4	normal	minor	Awaiting Review	defect (bug)	new	ux-feedback	2012-05-29T02:34:09Z	2012-07-05T23:45:10Z	"when clicking on Save button of a widget, a error should appear if the user is logged out.

So after clicking the button the wpspin animated images disappears and nothing happens. This can be a problem if the current user think he is logged in and he is not, the settings just will not be saved.

Sometimes the server is not working.

Need to adjust the javascript code and php:
in php we can use die function : die('1') or die('success');

in javascript something like this: 			
{{{
$.post(ajaxurl, data, function(response){
   if (response === 'success') {} else { alert('Fail to save'); } 
});
}}}

http://wpimpact.com/wp-content/uploads/2012/05/Untitled-4.png
"	alexvorn2
Needs UX Feedback	21485	Exclude current post from Recent Posts widget		Widgets		normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-08-05T23:16:56Z	2012-08-11T21:13:08Z	"Checking demo site - http://twentytwelvedemo.wordpress.com/

If you visit any recent post like this one - http://twentytwelvedemo.wordpress.com/2012/03/28/road-trips/

The recent post widget on right sidebar include this post in recent 5 post. We could just exclude present post from the loop using code like this



{{{
<?php
				global $post;
				$args=array(
					""numberposts""=>5,
					""orderby""=>""post_date"",
					""post__not_in""=>array($post->ID)
				);
				
				$posts = get_posts($args);
	
				foreach($posts as $post) {
					setup_postdata($post);
?>
}}}

Most theme has it. If you are already in a post which is among recent 5, no point of showing it in the loop.
"	Asif2BD
Needs UX Feedback	14132	Login widget using wp_login_form(); function	azizur	Widgets	3.1	normal	normal	Future Release	enhancement	assigned	ux-feedback	2010-06-28T18:51:07Z	2011-01-08T22:52:03Z	"In wordpress 3.0 we added the [http://codex.wordpress.org/Function_Reference/wp_login_form wp_login_form();] function.

But if a blog owners don't know PHP he can't  add a login form to his blog.

Adding a widget (that uses this function) will make it easyer for users to do this.
"	ramiy
Needs UX Feedback	20988	Open a closed sidebar box and enable droppable/sortable in it when you hover a draggable available widget over it	ldebrouwer	Widgets	3.4	normal	normal	Awaiting Review	enhancement	new	ux-feedback	2012-06-16T10:27:24Z	2012-06-16T11:00:29Z	"At the moment you have to explicitly open a sidebar box to allow it to except available widgets. In my humble opinion this is bad UX and the sidebar box should expand automatically when being hovered over with a draggable and it should accept the draggable to it's containing droppable/sortable as well.

The obstacles to overcome:
- Since the draggable in most cases overlaps the sidebar box when dragging over it ( unless you move really quickly ) it's hard to register a 'mouseenter'. This could be solved by setting the 'cursorAt' option for the draggable.
- Opening a sidebar box is trivial but activating the droppable/sortable only seems to kick in when the draggable has been released."	ldebrouwer
Needs UX Feedback	19159	When Inactive Widgets list gets long it is hard to clear	cdog*	Widgets	3.3	normal	minor	Future Release	enhancement	accepted	ux-feedback	2011-11-05T09:48:59Z	2012-12-30T12:03:38Z	"If you have a lot of inactive widgets it can be really hard manual labour to remove them all.

It would be much nicer if there was a delete all button like this plugin adds http://wordpress.org/extend/plugins/remove-inactive-widgets/"	westi
Needs UX Feedback	23008	Add a Hook To Hide Inactive Widgets		Widgets	3.5	normal	minor	Awaiting Review	feature request	new	ux-feedback	2012-12-19T19:59:12Z	2012-12-19T20:21:09Z	"Hello,

This is my first feature request so hopefully I'm going through the process correctly. Onto the request...

Adding a hook to remove or hide the Inactive Widgets sidebar on the WordPress Admin Widgets page would be very useful for developers who don't use the area and want to be able to hide it for better UX.

If this is approved I would love to submit a patch.  :)"	BFTrick
Needs UX Feedback	23160	Better 404 page for WordPress.org		WordPress.org site		normal	minor	WordPress.org	enhancement	new	ux-feedback	2013-01-09T20:10:23Z	2013-01-09T20:13:01Z	"Right now, if you get a 404 on wp.org, there isn't really much.

example:  [http://wordpress.org/howabouta404]

I'd suggest at the minimum changing the wording away from 'no posts' to 'no pages', and potentially adding links to commonly accessed areas, such as 'Were you looking for a plugin, theme, blah blah?'

In the side bar, there is also a 'Categories' section, that always displays 'No categories', maybe remove that as well?"	bradparbs
Needs UX Feedback	22343	Make some better theme preview test data		WordPress.org site		normal	trivial	WordPress.org	enhancement	new	ux-feedback	2012-11-02T01:19:46Z	2013-04-06T19:04:22Z	"[[http://i.imgur.com/Vdb8y.jpg]]

Surely something '''new''' can be done here."	wycks
