Events 1.5.3

Written by Arnan on August 29, 2008 – 12:13 am

So finally after a few days of tampering with some new features which i removed again because i sucked at concentrating… *sigh* A lot is on my mind.

Anyway, some fixes, some changes, check it out:
[new] Language field for ‘past events’ message
[change] Post event message only shows AFTER the event, not during the event
[new] For the events_list function you can now optionally specify one event
[change] the function events_page() is now events_list()
[change] Improved date setting for adding/editing events
[update] Improved MySQL queries on several parts and functions
[change] Message after event is now a textarea
[fix] Duration now shows the actual duration as expected

More information:
http://meandmymac.net/plugins/events/

Download:
http://downloads.wordpress.org/plugin/wp-events.1.5.3.zip

Tags: , , , , |

2 Comments to “Events 1.5.3”

  1. David Waugh Says:

    Great plugin. My only issue is since I upgraded to WP 2.6 (or above) I get the error “Unknown column ‘category’ in ‘field list’” when I hit save event. Any ideas? I assume it’s something to do with MySQL tables?

    Thank you.

  2. Rod Sherwin Says:

    I found a bug in the events_sidebar function when truncating the length of the title. If the title_link option was set to yes it the hyperlink code is added, but after that it would truncate the text and sometimes cut off the ending if the title was long.

    Here’s the fix:
    $event->title = substr($event->title, 0 , $events_config['sidelength']);
    if($event->title_link == ‘Y’) { $event->title = ‘link.’” target=”‘.$events_config['linktarget'].’”>’.$event->title.’‘; }
    $template = str_replace(’%title%’, $event->title, $template);

    This code does the truncation first then adds the hyperlink tags.

    Regards,
    Rod

Leave a Comment