sidebar question for Wordpress?

Hello,

I was wondering if someone who has used this plugin could answer some questions for me. I am looking for a plugin that will allow users to input events without having to go into wp-admin, and it looks like this could do the trick. Is it possible to display the most recent events in a list in the sidebar as well as have a calendar on a page?

Thank you,

Aaron

Sidebar widget is available.
docs.dhtmlx.com/doku.php?id=dhtm … ess#widget

Separate minicalendar with events is not available.

Hello Stanislav,

This works great, but I do have one other question. It says Oncoming events instead of upcoming events, how can I change this?

Thank you,
Aaron

You can alter the text at
event-calendar-scheduler\sidebar.php

Also, the top label is store in locale files
event-calendar-scheduler\codebase\sources\scheduler-en_EN.po
event-calendar-scheduler\codebase\sources\scheduler-en_EN.mo

Hello,
I edited the widget header text in both event-calendar-scheduler\sidebar.php and event-calendar-scheduler\codebase\sources\scheduler-en_EN.po and it didn’t affect anything. I was not able to edit event-calendar-scheduler\codebase\sources\scheduler-en_EN.mo.

I just want to change the widget header title from “Oncoming Events” to “Upcoming Events”. Is there a way to do this?

Hi!
Have a look at file wp-content/plugins/event-calendar-scheduler/scheduler.php

...
function upcoming_widget($args) {
        extract($args);
	echo $before_widget;
	echo $before_title;
	echo __('Oncoming events', 'scheduler');
	echo $after_title;
	echo scheduler_sidebar();
	echo $after_widget;
}
...

Modify it like here:

...
function upcoming_widget($args) {
        extract($args);
	echo $before_widget;
	echo $before_title;
	echo __('Upcoming events', 'scheduler');
	echo $after_title;
	echo scheduler_sidebar();
	echo $after_widget;
}
...