Title: Quick edit missing in admin
Last modified: August 31, 2016

---

# Quick edit missing in admin

 *  Resolved [CasperB](https://wordpress.org/support/users/casperb/)
 * (@casperb)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/quick-edit-missing-in-admin/)
 * Hi Jeroen,
 * As of the recent update, the admin area has become very limited in functionality(
   I see in other posts that I am not the only one who thinks so). I really missing
   the quick edit option to quickly set categories (for example) without having 
   to open the production.
 * I prefer the productions to be listed just as the posts are in WP. It makes it
   much more intuitive.
 * Thanks,
    Casper
 * [https://wordpress.org/plugins/theatre/](https://wordpress.org/plugins/theatre/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [Jeroen Schmit](https://wordpress.org/support/users/slimndap/)
 * (@slimndap)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/quick-edit-missing-in-admin/#post-7208431)
 * Casper,
 * You can re-enable the old admin page by adding this code to the functions.php
   of your theme:
 *     ```
       /**
        * Redirects the new events admin page to the old productions admin page.
        */
       function wpt_use_old_admin_page() {
           global $pagenow;
           if($pagenow == 'admin.php' && isset($_GET['page']) && 'theater-events' == $_GET['page']){
               wp_redirect(admin_url('/edit.php?post_type='.WPT_Production::post_type_name));
               exit;
           }
       }
   
       add_action('admin_init', 'wpt_use_old_admin_page');
       ```
   
 *  Thread Starter [CasperB](https://wordpress.org/support/users/casperb/)
 * (@casperb)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/quick-edit-missing-in-admin/#post-7208460)
 * Thanks, works perfectly.
 *  Thread Starter [CasperB](https://wordpress.org/support/users/casperb/)
 * (@casperb)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/quick-edit-missing-in-admin/#post-7208602)
 * Hi Jeroen, with the latest Theater update, the above code in functions.php gives“
   Array” as as event dates in the events admin page.
 * I would like to be able to sort the events in the admin page primarily by date,
   starting with the upcoming events/productions first. What is the best way to 
   do this?
 * Thanks,
    Casper
 *  Plugin Author [Jeroen Schmit](https://wordpress.org/support/users/slimndap/)
 * (@slimndap)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/quick-edit-missing-in-admin/#post-7208603)
 * This will be fixed in the next update.
    For now you can change line 441 in ‘functions/
   wpt_admin.php’ from:
 *     ```
       echo $production->dates().'<br />';
       ```
   
 * to
 *     ```
       echo $production->dates_html().'<br />';
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Quick edit missing in admin’ is closed to new replies.

 * ![](https://ps.w.org/theatre/assets/icon-256x256.png?rev=1208182)
 * [Theater for WordPress](https://wordpress.org/plugins/theatre/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/theatre/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/theatre/)
 * [Active Topics](https://wordpress.org/support/plugin/theatre/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/theatre/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/theatre/reviews/)

## Tags

 * [admin](https://wordpress.org/support/topic-tag/admin/)

 * 4 replies
 * 2 participants
 * Last reply from: [Jeroen Schmit](https://wordpress.org/support/users/slimndap/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/quick-edit-missing-in-admin/#post-7208603)
 * Status: resolved