ayam maiself
Forum Replies Created
-
Forum: Plugins
In reply to: [ICS Calendar] Visualization problem inside Directorist plugin postProblem in month view
https://menuda.net/?at_biz_dir=test-directorist-ics-calendar
Shortcode:
[ics_calendar url=”…” view=”month” tz=”Europe/Madrid” location=”true” organizer=”true” attach=”true” title=”false” eventdesc=”true” description=”false” monthnav=”compact” toggle=”lightbox” nomobile=”true” columnlabels=”short”]Problems in list view:
https://menuda.net/?at_biz_dir=test-3-directorist-ics-calendar
Shortcode:
[ics_calendar url=”…” view=”list” eventdesc=”true” description=”false” location=”true” tz=”Europe/Madrid” toggle=”lightbox” location=”maplinks” limitdays=”500″ color=”#800080 #008000 #ffa500″ format=”jS F”]THANKS
——————
I’ve post you a suggestion in the multi-day event extended visualization thread:
https://www.ads-software.com/support/topic/events-that-are-some-days-long/#post-15387582
Maybe can help on doing this feature possible- This reply was modified 3 years, 1 month ago by ayam maiself.
- This reply was modified 3 years, 1 month ago by ayam maiself.
Forum: Plugins
In reply to: [ICS Calendar] Events that are some days long…Thinking about the multi-day events visualization:
In css you have the classes asigned to multi-day events, so the style can be different if there is the first day of the event, the last or middle days…
.multiday_first
.multiday_middle
.multiday_lastAnd I think can be created a way of “extend” the multi-day events not extending them… just making the event blocks of the same event keep aligned in the same row wile inserting it in the calendar — just using a LIFO stack or FIFO queue to insert blank blocks when an event finish but another continue under ir… to allow the same event blocks keep aligned in the same row. There can be a parameter to activate or deactivate this feature…
Then the extend multi-day event can be does i think…The accumulation of blank blocks if there is some multi-day events can be really a minor problem most of the times because from a week to the next one you can delete all the blank blocks in the top of the stack
Thanks for reading
- This reply was modified 3 years, 1 month ago by ayam maiself.
- This reply was modified 3 years, 1 month ago by ayam maiself.
Forum: Plugins
In reply to: [ICS Calendar] Events that are some days long…I’ve find that can be hidded with CSS.
In example, with this CSS the text color of first day of multiday events will be changed to red, and the event repeated on every middle and last day of multiday events will be hidden. So the event will be show only the first day. Despite it’s rendered by the plugin on every day.
This will take effect only on all-day events… but if take out the “.all-day” will take effect too in events that begin in determinated hour on a day and ends in determinated hour in other different day..event .all-day .multiday_first {
color:#FF0000;
}
.event .all-day .multiday_middle {
display: none;
}
.event .all-day .multiday_last {
display: none;
}
—
I’ve seen the background color can be changed only in you don’t set color in shortcode, so this CSS example works only if color parameter on CSS is not set:
.events .multiday_middle {
background: #0f0;
}SUGESTION:
Will be interesting to avoid the repeat of multi-day events for those events begin at afternoon-night in a day and ends in early night of the nest day, like night parties does. Setting a hour threshold or something like that.Forum: Plugins
In reply to: [ICS Calendar] Events that are some days long…Thanks for your fast response!
And the multi-day events can be displayed only in the first day?