I'm working on a project that has around 80 users each with their own calendar.
As admin I need to be able to display each users calendar individually.
So, I would login to my admin account and see my calendar then search for a user and display their calendar.
Is this possible?
I can display a calendar by current_user ID but only by logging in as them - I need to be able to view by just searching by username, for example.
http://wordpress.org/extend/plugins/events-manager/
it's not possible by default but you could do this using php, e.g.:
echo EM_Calendar::output(array('owner'=>x));
via php, where x is the user id you want (e.g. via $_GET)
Hi Marcus - Agreed on the above but I need to be able to search and display the results dynamically.
I've been looking at the events-search.php but nothing has worked so far.
you'd need to create some sort of page yourself (e.g. a normal wp page template, and then link to that from user menus etc. with your own mods to WP areas to add the link)