Events Calendar reverted to 6.5.1

Sorry everyone. When I was uploading the version 6.5.2 for testing, I mistakenly tagged the version incorrectly. The stable version is 6.5.1. Version 6.5.2 is in Beta and is uploaded to the WordPress site under the development version. If you would like to test out the development version please leave feedback either here or at http://heirem.fr

Sorry for the confusion. My mistake.

26 Responses to “Events Calendar reverted to 6.5.1”

  1. jelpesao says:

    Is there a way to add repeating events like birthdays to the calendar?

  2. Luke says:

    The latest I heard from Heirem was some information about features that are being added. Recurring events was one of the features that was mentioned.

  3. ronald says:

    after updating the details to events are no longer shown. Also the css options in the admin panel don’t work.
    Strangely enough, installing an older version doesnt’ bring the details back either.

  4. Wyn James says:

    Can Events Calendar be used in a multi-lingual blog, in conjunction with a language switching plugin such as qtranslate or Language Switcher? If it is not currently an option is it likely to be soon? I have used your plugin in monolingual settings with no problems but would like to use it in an English/Welsh bilingual website.

  5. Johan says:

    I love the calendar but since the last update to 6.5.1 the font-family changed and I can’t find where to change it back.
    Please either just remove the font settings or make an option to add your own font-family in the options.
    Thanks for a great widget!

  6. Mark says:

    Do you have upgrade instructions available? I am running 6.4 and want to upgrade to 6.5.1

  7. carlos says:

    I love the calendar.
    How can I edit/erase events?
    Can’t see the option int he menu.
    Thanks a lot

  8. Tom says:

    Hi! Great plugin. I need some functionality which may be an easy tweak to accomplish. I need the ability to create users with the contributor role and allow them to get in and create events. These events would be subject to review. This is how posts work under the contributor role. Is there an easy tweak to the code?

  9. EJ Cruz says:

    Hello,
    My theme does not support widgets. I am inserting the calendar in my sidebar using “”. The days of the week on the calendar are represented by three letter abbreviations. I wanted the days to by represented by one letter as they appear on your calendar. How can I accomplish this.

    Thank you.

  10. Keith says:

    Somehow the event calendar widget (calendar and list) breaks my Lightbox plugin for my galleries and images.

    Also, when I create a page and put the “[[EventsCalendarLarge]]” (without the quotes), I get just a regular calendar – none of the events show up.
    This also happens when I use the widget as a calendar – none of the existing events show up.

    Is there something I need to do to get the events to show and to keep the plugin from breaking the lightbox plugin?

    I’m using WP lighbox 2 and it’s using Lightbox JS v2 – and I’m using NextGen gallery and gallery widget..

    Thanks,

  11. Timo says:

    Hi… first of all… thanks for this great plugin! Great work!

    We have a little problem with it. We created a page with a calendar on it by putting [[EventsCalendarLarge]] in the body of the page. Unfortunately when we cklick on the next month to see upcoming events and then return to the previous month all events disappear. If we reload the page everything is fine again.

    Any ideas?

    cheers,
    t

  12. Jon says:

    Hello,

    Is there any way to make the calendar to show a list view.

    I mean like in the Large view you can have a full page of the Calendar.

    But, I would like to be able to have a Page with just the List view of the calendar . So, that it can be printed out.

    Just the look of the Widget event list would be fine. I just want to be able to put it in a Page . That way I can print it out.

    Thanks you

  13. Kathleen says:

    Hi all

    I installed the events calendar and it has messed up the formatting on my template.

    I get error code: Fatal error: Call to undefined function: ec3_get_calendar() in /home2/xxxxxxxx/public_html/wp-content/plugins/eventcalendar3/widget.php on line 56

    I cannot remove the widget, but would love to. I have purchased a set of 10 themes and no matter which theme I use, the formatting is destroyed. I have used a free them as well and the error is still there, the widget cannot be removed and I am unable to add or remove any other widgets.

    I have gone to my cpanel file manager and followed the error. This is what the code looks like:

    /** Event Calendar widget. */
    function ec3_widget_cal($args)
    {
    extract($args);
    $options = get_option(‘ec3_widget_cal’);
    echo $before_widget . $before_title;
    echo ec3_default_string($options['title'],’Event Calendar’);
    echo $after_title;
    ec3_get_calendar();
    echo $after_widget;
    }

    function ec3_widget_cal_control()
    {
    $options = $newoptions = get_option(‘ec3_widget_cal’);
    if ( $_POST["ec3_cal_submit"] )
    {
    $newoptions[‘ti

    Anyone know what is going on?

  14. Vince says:

    Great plugin, works very well, including the CSS although I haven’t found yet where to change the background color of the Large Calendar’s “today” cell… it’s still that baby blue :)

    There’s another iseeus however… on my pages I have custom graphic titles such as a banner that says “Calendar” at the top (i’ve removed the standard text title in wp_pages). Placing the [[EventsCalendarLarge]] tag in the content supercedes the position of other objects and/or text in the body. So my calendar ALWAYS ends up at the top of the page… any fix for that? Am I missing something the CSS?

    Thanks much!

  15. Keng says:

    Hello That’s Great plugin ! I like it and I have any question about plugin

    I would like to use event list as calendar and I’ve insert into my sidebar manually and It appear the calendar event How can I list event manually and What’s about the php code to view event list ?

    Thank You very much for your help ^^

  16. Occasio Gee says:

    Great plug-in. The ultimate add in would be ics support. If I could import events by ics or csv it would be great.

  17. The new version breaks the full page calendar view when you have more than one event per day – it doesn’t add a line break after each one – and all the events just run together making the calendar illegible.

  18. arriba says:

    for those trying to find a solution using multilingual qtranslate plugin and fight with outputs like this:

    [lang_en]text text tesxt text[/lang_en][lang_pt]different text text tesxt text[/lang_pt]

    well, the solution is to gettexted this outputs, i think is a good idea to include the modification on future version as this is not only about the qtranslate plugin and could be helpfull to develop:

    template-functions.php line 179:
    this: $calendar_days[$day_id]->add_post($ent->post_title,$time,$ent->is_event);
    to this:
    $calendar_days[$day_id]->add_post(__($ent->post_title),$time,$ent->is_event);

    line 234:
    this:
    . ‘” title=”‘ . $calendar_days[$day_id]->get_titles() . ‘”‘;

    to this:
    . ‘” title=”‘ . __($calendar_days[$day_id]->get_titles()) . ‘”‘;

    line 441:
    this:
    stripslashes(strip_tags($entry->post_title)),
    to this:
    stripslashes(strip_tags(__($entry->post_title))),

    well, that´s all, great plugin by the way. thanks

  19. arriba says:

    ops, in the new version the line numbers are different, but you can search them anyway!!

  20. arriba says:

    puff, very sorry, but now i found, that only changing

    this: $calendar_days[$day_id]->add_post($ent->post_title,$time,$ent->is_event);
    to this:
    $calendar_days[$day_id]->add_post(__($ent->post_title),$time,$ent->is_event);

    on line 192 make the fix too.
    the mistake was caused due to the fixes i posted were done on the previous verios of the the ec3 and now some things changed.

    for now i´m using both, ec3 3.1.2 and qtranslate 1.1.4, and with the change i mention here works.

    hope this is my last comment for now!!! :)

  21. Niha says:

    Hi a real favor! i want when i click the event in the calendar , no tool tip is there but it takes me to the post .. or the list of the posts regarding this event. how can i do that??
    please this is very urgent

    thanks alot!
    p.s great work!

  22. Luke says:

    Although that may be beneficial to you, many people have multiple events for the same day. This would not work for them. I will look and see if there is an option for this but it does not look too promising.

  23. Niha says:

    ok you are right ! drop it … so now how can i say to the date … to go to the page … where the list of posts for that certain date and category … events in this case more like archive for posts under category events under this date.

    thanks alot

  24. Lee says:

    Repeating events would be a great help to me on a couple sites. I’ll stay tuned…

  25. Jane says:

    Thanks for this fix for Upcoming Events

    $calendar_days[$day_id]->add_post(__($ent->post_title),$time,$ent->is_event);

    Is it possible to fix the display of days and months in the sidebar widget and event dates so they too can be bi-lingual? I’m using Language Switcher with Event Calendar 3

    Any help would be amazing.

  26. Ganry79 says:

    Back in the old days, when the cinema was known as the pictures, they used to show two films in a programme, the main feature and the B movie. ,

Leave a Reply