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.
September 23rd, 2008 at 1:09 am
Is there a way to add repeating events like birthdays to the calendar?
September 23rd, 2008 at 1:11 am
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.
September 23rd, 2008 at 3:50 am
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.
September 23rd, 2008 at 9:57 am
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.
September 26th, 2008 at 7:38 am
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!
September 26th, 2008 at 3:44 pm
Do you have upgrade instructions available? I am running 6.4 and want to upgrade to 6.5.1
September 27th, 2008 at 12:12 am
I love the calendar.
How can I edit/erase events?
Can’t see the option int he menu.
Thanks a lot
September 29th, 2008 at 8:42 am
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?
October 2nd, 2008 at 2:19 pm
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.
October 2nd, 2008 at 5:32 pm
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,
October 6th, 2008 at 7:08 am
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
October 6th, 2008 at 5:13 pm
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
October 7th, 2008 at 2:15 pm
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?
October 8th, 2008 at 1:50 pm
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!
October 9th, 2008 at 5:19 am
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 ^^
October 9th, 2008 at 11:10 am
Great plug-in. The ultimate add in would be ics support. If I could import events by ics or csv it would be great.
October 10th, 2008 at 1:32 pm
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.
October 31st, 2008 at 11:51 pm
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
October 31st, 2008 at 11:54 pm
ops, in the new version the line numbers are different, but you can search them anyway!!
November 1st, 2008 at 12:04 am
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!!!
November 21st, 2008 at 5:32 am
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!
November 21st, 2008 at 9:38 am
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.
November 21st, 2008 at 11:11 am
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
December 12th, 2008 at 8:11 pm
Repeating events would be a great help to me on a couple sites. I’ll stay tuned…