help to better help you:

Please: add always Joomla / JEM version and details to your posts, so we can try to reproduce your issue!

eventlist with only upcoming events

Re: eventlist with only upcoming events

5 years 8 months ago
#25959
You choose "alte events archivieren and choose 1 day.
Normally the events are archived at the end of the day. You can use "wartung "to archive quicker.
The following user(s) said Thank You: Kurtus

Please Log in or Create an account to join the conversation.

Re: eventlist with only upcoming events

5 years 8 months ago
#25963
Choosing 1 day in "Umgang mit abgelaufenen Veranstaltungen" - "Löschen nach Anzahl Tagen" solved my problem.
I thought if I choose 1 day, the events are delted completely.

Thank you all for your help!

Kurt

Please Log in or Create an account to join the conversation.

Re: eventlist with only upcoming events

5 years 8 months ago
#25971
I suggest a correction in the German translation, since the labels and tooltips are somehow unclear. I guess that was one reason of the problem.
Old version:
Code:
COM_JEM_EVENT_HANDLING="Umgang mit abgelaufenen Veranstaltungen" COM_JEM_OLD_EVENTS_DESC="Alte Events automatisch in Papierkorb, löschen oder archvieren." COM_JEM_OLD_EVENTS="Alte Veranstaltungen" COM_JEM_DO_NOTHING="Nichts tun" COM_JEM_DELETE_OLD_EVENTS="Alte Veranstaltungen löschen" COM_JEM_ARCHIVE_OLD_EVENTS="Alte Veranstaltungen archivieren" COM_JEM_TRASH_OLD_EVENTS="Alte Veranstaltungen in den Papierkorb" COM_JEM_OLD_EVENTS_WARN="- überfällig-" COM_JEM_NUMBER_DELETE_DAYS_DESC="Nach wieviel Tagen soll erst gelöscht oder archiviert werden. Das wirkt nicht, wenn die obere Option deaktiviert ist." COM_JEM_NUMBER_DELETE_DAYS="Löschen nach Anzahl Tagen"

New version:
Code:
COM_JEM_EVENT_HANDLING="Umgang mit vergangenen Veranstaltungen" COM_JEM_OLD_EVENTS_DESC="Vergangene Veranstaltungen automatisch archvieren, in Papierkorb verschieben oder löschen." COM_JEM_OLD_EVENTS="Vergangene Veranstaltungen" COM_JEM_DO_NOTHING="lassen und nichts tun" COM_JEM_DELETE_OLD_EVENTS="löschen" COM_JEM_ARCHIVE_OLD_EVENTS="archivieren" COM_JEM_TRASH_OLD_EVENTS="in den Papierkorb verschieben" COM_JEM_OLD_EVENTS_WARN="- überfällig-" COM_JEM_NUMBER_DELETE_DAYS_DESC="Anzahl Tage nach Ablauf der Veranstaltungen, wann die oben gewählte Aktion ausgeführt wird." COM_JEM_NUMBER_DELETE_DAYS="Aktion nach Anzahl Tagen"
The following user(s) said Thank You: Kurtus

Please Log in or Create an account to join the conversation.

Re: eventlist with only upcoming events

5 years 8 months ago
#25974
I added the suggestions to the German language file in transifex
The following user(s) said Thank You: Kurtus

Please Log in or Create an account to join the conversation.

Re: eventlist with only upcoming events

5 years 8 months ago
#26001
Alternative implementation (in case you don't want to archive) would be to extend eventlist view to allow selection of new option Only Future, in addition to the existing No, Open Dates Too, Open Dates Only for Show open dates option selector. Will require a simple change to view, model and language file.

/administrator/components/com_jem/language/en-GB/en-GB.com_jem.ini
Code:
+COM_JEM_SHOW_FUTUREDATES_ONLY="Future, Only"
/components/com_jem/models/eventslist.php
Code:
+ case 3: // show only future events, with startdate >= today + $query->where('a.dates >= '. $db->quote(date("Y-m-d"))); + break;

/components/com_jem/views/eventslist/tmpl/default.xml
Code:
+ <option value="3">COM_JEM_SHOW_FUTUREDATES_ONLY</option>
The following user(s) said Thank You: Kurtus

Please Log in or Create an account to join the conversation.

Re: eventlist with only upcoming events

5 years 8 months ago - 5 years 7 months ago
#26017
Thank you depebo, I will try this.

But now I have a question.
How can I open the trash (Papierkorb) in JEM to find my deleted events again and to recover them?
Last edit: 5 years 7 months ago by Kurtus.

Please Log in or Create an account to join the conversation.

Time to create page: 0.605 seconds