Yes! See the changelog: https://ww.wp.xz.cn/plugins/theatre/changelog/
What columns are you missing?
Jeroen
Ehhh column date? How do i order by date now?
There’s only one column to sort and it sorts as:
…/wp-admin/admin.php?page=theater-events&post_status=draft&orderby=title&order=asc
Can we maybe think of an even better solution?
Do you just want to sort by date?
Or would it be better if you can just view your upcoming events?
Or view them by month?
How are you using this page? I’m interested in your input, so I can make this screen more useful for all users.
Jeroen
Hi! I found it very clearly when everything was still in separate columns. Name, photo, date, place, etc. I also want to be able to click on the column and values can sort up or down.
Oscar,
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');
Hi Jeroen,
I’ve placed new events for the new year/season and nog the slider doesn’t show the first upcoming events anymore. http://www.hetveurtheater.nl/ In the admin i can’t sort correctly by date also. Not in the new or old admin.
Please help.
I’ve changed the tags manually but this is what it looked like:
https://www.dropbox.com/s/59w90b0t5mxg4nr/Slider.png?raw=1
Hello Jeroen,
I would have to agree with ossiesayshi in that I found the old admin much more intuitive to use, primarily because of the ability to sort by date and show a limitless number of events at a time (rather than paginated).
I have added the custom code to the functions.php as suggested above and this seems to work fine for us for now but I would suggest going back to utilising this functionality in future updates as it was very useful.
Many thanks
Dual Creative
Oscar,
Could you please start a new issue for the slider, since the original issue is already marked a ‘resolved’.