- Posts: 5
- Thank you received: 0
Multiple day of Agenda
- goliarth
- Topic Author
- Offline
- New Member
-
Less
More
1 year 6 months ago #160520
by goliarth
Multiple day of Agenda was created by goliarth
Hi!
how to sove 2 days agenda? I'd like to have headline Day One; hours, title, and headline Day Two: hours, title
Now Agenda let us provide only hours, title and description. But what when event if event has more than one day and we need to sert agenda for each day
how to sove 2 days agenda? I'd like to have headline Day One; hours, title, and headline Day Two: hours, title
Now Agenda let us provide only hours, title and description. But what when event if event has more than one day and we need to sert agenda for each day
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
1 year 6 months ago #160528
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Multiple day of Agenda
Hi goliarth
This is, unfortunately, not possible at the moment. I will see if I can improve and support it in the future
Regards,
Tuan
This is, unfortunately, not possible at the moment. I will see if I can improve and support it in the future
Regards,
Tuan
Please Log in or Create an account to join the conversation.
- MinneMedia
- Offline
- New Member
-
Less
More
- Posts: 14
- Thank you received: 1
1 year 1 month ago - 1 year 1 month ago #164906
by MinneMedia
Replied by MinneMedia on topic Multiple day of Agenda
Hello, we currently have an identical problem. Is an approach now established or is a makeshift approach recommended? (EB 4.8.0)
Addendum: I have developed a small makeshift method for us that does the job for now. A pure date specification is expected in the Time field. Certainly capable of optimization, but does what it's supposed to do.
Addendum: I have developed a small makeshift method for us that does the job for now. A pure date specification is expected in the Time field. Certainly capable of optimization, but does what it's supposed to do.
Code:
// add
use Joomla\CMS\HTML\HTMLHelper;
...
// Check date
$agendaTitle = array();
$dateFormat = 'd.m.Y';
$dateFormatDisplay = 'l, d.m.Y';
foreach ($agendas as $i => $agenda) {
$string = strip_tags($agenda->time);
$date = DateTime::createFromFormat($dateFormat, $string);
if($date && $date->format($dateFormat) === $string) $agendaTitle = $i;
}
if($agendaTitle[0] == 0) {
echo '<h3 class="eb--agenda-datetitle">'.HTMLHelper::_('date', strip_tags($agendas[0]->time), Text::_($dateFormatDisplay)).'</h3>';
}
// Normal Agendas-Table
?>
<div class="table-responsive">
<table id="eb-event-agendas" class="table table-bordered table-striped">
<tbody>
<?php
foreach ($agendas as $i => $agenda)
{
// Filter Dates-Only
if(!in_array($i,$agendaTitle)) {
?>
<tr>
<td class="eb-agenda-time">
<?php
...
...
} else if($i > 0) { ?>
</tbody>
</table>
</div>
<?php
// NEW Date-Headline + Table
echo '<h3 class="eb--agenda-datetitle">'.HTMLHelper::_('date', strip_tags($agenda->time), Text::_($dateFormatDisplay)).'</h3>';
?>
<div class="table-responsive">
<table id="eb-event-agendas" class="table table-bordered table-striped">
<tbody>
<?php
}
Last edit: 1 year 1 month ago by MinneMedia.
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
1 year 1 month ago #164909
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Multiple day of Agenda
Thanks MinneMedia for sharing the code. It would be better if you can zip the modified file and upload it here in case someone needs it
Regards,
Tuan
Regards,
Tuan
The following user(s) said Thank You: MinneMedia
Please Log in or Create an account to join the conversation.
- MinneMedia
- Offline
- New Member
-
Less
More
- Posts: 14
- Thank you received: 1
1 year 4 weeks ago #165129
by MinneMedia
Replied by MinneMedia on topic Multiple day of Agenda
I attached the full agendas.php to use in the template-override domain.com/templates/templatename/html/com_eventbooking/plugins/agendas.php
Feel free to use or optimize.
Feel free to use or optimize.
The following user(s) said Thank You: Mary
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
1 year 4 weeks ago #165130
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Multiple day of Agenda
Great, many thanks again @MinneMedia
Tuan
Tuan
The following user(s) said Thank You: MinneMedia
Please Log in or Create an account to join the conversation.
Moderators: Tuan Pham Ngoc
Support
Documentation
Information
Copyright © 2025 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.