faebu
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] having more than one calendar?Why didn’t you try yourself?
i just tested it and yes, it is possible to have multiple calendars. you can have multiple widgets or generate multiple list of events using the tags
{events_print}
or{event_printlist}
, or event graphical calendars using the tag{events_calendar}
.All tags, functions and also widgets allow to filter by category, so it shoul fit your needs.
Forum: Plugins
In reply to: [Plugin: WP Calendar] How can I display an event?What you have to do is just to create a new page. You don’t have to put the tag {event_subject} in the title, but in most cases this makes sense, since you want the event’s title to also be the page title (browser titlebar, top header element). In the content you can put any parameter {event_description,…).
All these parameters are well documented in the WP Calendar settings (tab usage).
The most important thing is, that you setup this page in the WP Calendar settings (tab event page). Once you have done this, the generated links from event lists will point to this page and the parameter {event_url} will now work and refer to this single page.
i hope this helps.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Event recurrence?not yet, but this is planned but i can’t give you an estimated release date. i hope i can realise this this autumn.
cheers
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] How to paginate fse_print_events_list?hi muaythai
i will release V1.2.0 this afternoon. this release includes the pagination feature. you can setup the pagination in the settingspage and overwrite all parameters in the function args or tag parameters.
cheers
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Styling event_header classhi muaythai
if nothing happens, this could be problem of the css selectors. maybe the predefined styles in the plug-in stylesheet uses “deeper” css paths.
you could use the constant !important to make sure your css rules are the strongest.
faebu
hi.
1) in the graphical calendar you can colorize the events, since a class for every category id is used. The example below is for category id 3.
div .fc-event.category-3, div .fc-event.category-3 a { background-color: red; border-color: red; }
2) this is all css specific. sure you can change the font-size and many other things, but you need at least some html and css knowledge.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] 1.1.4 – sidebar widgets show SQL querysorry for this bug. it is fixed with 1.1.5.
hi bmsorg
i have fixed that in the current version 1.1.4. Thanks for your help.
Cheers!
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] template tags in theme?hi
yes you can. there are some php functions you can use, which are discribed in the usage documentation. these functions accept an array of options. within thin this options-array you can pass the template.
greets faebu
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] {events_calendar} time behind 4 hoursgreat! i just released V1.1.2 with a patch for this issue!
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] {events_calendar} time behind 4 hoursi cannot reproduce this error. could somebody change the following lines in fsCalendar.php (~Line 295):
$e[‘start’] = $evt->tsfrom; //date_i18n(‘c’, $evt->tsfrom);
$e[‘end’] = $evt->tsto; //date_i18n(‘c’, $evt->tsto);with
$e[‘start’] = date(‘c’, $evt->tsfrom);
$e[‘end’] = date(‘c’, $evt->tsto);and report if this solves the problem? Make sure u have php5!
Thanks!
i’ll fix this the next few hours.
Forum: Plugins
In reply to: [Plugin: WP Calendar]hi there.
thanks for your input. i didn’t know about the this new settings api and about the WP_DEBUG var in the config file. there are so many developer documents, some of them are very old others are extremely hard to find i think.
i completely reworked the settings interface using this settings api in my V1.1.0 i released yesterday night.
Forum: Plugins
In reply to: [Plugin: WP Calendar] Thank youok, i’ll include this feature in the next version!
Forum: Plugins
In reply to: [Plugin: WP Calendar] php function fse_print_events_list prints the templategreat to hear! you’re welcome!