Is it possible to display the LIST view (as used in the Widget) on a WP page as opposed to the Large Calendar?
There will only be 15-20 events for the entire year, so a List view would be much more user friendly (not so much clicking through all the months to find each event).
Thanks for the help.
Deb
bemusec
Member
Posted 6 months ago #
This is something that a client has asked me for as well. Anything happened with this?
cmlawson
Member
Posted 6 months ago #
I got it to work by installing this plugin:
http://wordpress.org/extend/plugins/exec-php/
Then pasting this code into the HTML view of the post/page:
<?php sidebarEventsList($number_of_items);?>
For example, use this to display 30 events:
<?php sidebarEventsList(30);?>
PS Note, if you flip back to non WYSIWYG mode, it'll delete the PHP code so you'll have to continue to work in HTML view on that page.