Post UI Tabs plugin double fade effect

I’m going to answer this anyway because i’ve already narrowed down the source of your problem and it’s not a Javascript one. I have AdblockPlus installed in Firefox so i went through your scripts blocking them in chunks at a time until i was down to just the PUT scripts, and the problem was still … Read more

register_taxonomy – show in admin menu, but not on post type (edit) screen

As per le comment. function remove_artist_meta() { remove_meta_box( ‘{taxonomy name}’, ‘post’, ‘side’ ); } add_action( ‘admin_menu’ , ‘remove_artist_meta’ ); The Admin menu has been always difficult to deal with, some help here would be nice: http://core.trac.wordpress.org/ticket/12718 But I think that this could be added a a parameter to register_taxonomy. http://core.trac.wordpress.org/ticket/21543

User interfaces living in the Admin “back end” area

I think User interfaces in WordPress Admin is a good idea. It will straight away gives different views for different groups(like editors, subscribers etc..). I also think Custom post types and custom fields are introduced for this purpose. On the flip side you wouldn’t be able to completely change the look of Admin area, so … Read more