- Posts: 2
- Thank you received: 0
changes in the calendar template / layout
- Tanja
-
Topic Author
- Offline
- New Member
-
Less
More
4 years 10 months ago #135448
by Tanja
changes in the calendar template / layout was created by Tanja
Hello, I would like to change the calendar template / layout.
I would love to adapt it to the global page layout.
To do this, I would have to change colors and fonts and adjust tables (columns and widths).
How can I achieve this without having to shake with every update that everything is preserved.
Could I copy, modify, and import the renamed default layout as a new layout?
Do you still need changes in other files?
Thanks in advance,
Tanja
I would love to adapt it to the global page layout.
To do this, I would have to change colors and fonts and adjust tables (columns and widths).
How can I achieve this without having to shake with every update that everything is preserved.
Could I copy, modify, and import the renamed default layout as a new layout?
Do you still need changes in other files?
Thanks in advance,
Tanja
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
4 years 10 months ago #135449
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic changes in the calendar template / layout
Hi Tanja
To help us understand your request easier, could you please send us the link to current calendar page and explain how you want to change it?
Tuan
To help us understand your request easier, could you please send us the link to current calendar page and explain how you want to change it?
Tuan
Please Log in or Create an account to join the conversation.
- Tanja
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 2
- Thank you received: 0
4 years 10 months ago #135454
by Tanja
Replied by Tanja on topic changes in the calendar template / layout
Hi Tuan,
here the first link .. 2020adt.andrea-dinkel.de/2020adt/termin-6
..
I need to change the "date circles" in colour & font
the buttons in colour and position (right aligned)
The price field, colour, form and font size
...
the second
2020adt.andrea-dinkel.de/2020adt/ct-menu1-item13
here I need to change the floating width of the columns like a fixed width.
and again the buttons an their colour.
And for both views I need to modify the search.
I would like an advanced search in a line. Like a two-line table without a frame. Above what should be searched and below the actual search field. - Hope you understand the picture with the table
..
That's all for the Moment
Thanks
here the first link .. 2020adt.andrea-dinkel.de/2020adt/termin-6
..
I need to change the "date circles" in colour & font
the buttons in colour and position (right aligned)
The price field, colour, form and font size
...
the second
2020adt.andrea-dinkel.de/2020adt/ct-menu1-item13
here I need to change the floating width of the columns like a fixed width.
and again the buttons an their colour.
And for both views I need to modify the search.
I would like an advanced search in a line. Like a two-line table without a frame. Above what should be searched and below the actual search field. - Hope you understand the picture with the table

..
That's all for the Moment

Thanks
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
4 years 10 months ago #135478
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic changes in the calendar template / layout
For most of these items, I don't think change the layout would be needed. To change color, font..., you can go to Events Booking -> Configuration, look at Custom CSS tab, add custom css to change the color from there...
Please try that and let me know if you have other questions
Tuan
Please try that and let me know if you have other questions
Tuan
Please Log in or Create an account to join the conversation.
- Manfred Lilge
- Offline
- New Member
-
Less
More
- Posts: 17
- Thank you received: 0
3 years 1 month ago #150280
by Manfred Lilge
Replied by Manfred Lilge on topic changes in the calendar template / layout
I have a related question:
In the calendar view I would like to change the color of an event by its status:
- normal: green
- 50% booked: yellow
- fully booked: red
- booked by user: blue
- expired: grey
Guess this won't be a simple css customization, will it?
In the calendar view I would like to change the color of an event by its status:
- normal: green
- 50% booked: yellow
- fully booked: red
- booked by user: blue
- expired: grey
Guess this won't be a simple css customization, will it?
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
3 years 1 month ago #150287
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic changes in the calendar template / layout
No, it won't be simple css customization. You will need to customize the layout to add necessary css class for each of these status before you can add css to change the color. Currently, only two status are supported:
- Normal
- Fully Booked (the css class is eb-event-full)
Tuan
- Normal
- Fully Booked (the css class is eb-event-full)
Tuan
Please Log in or Create an account to join the conversation.
- Manfred Lilge
- Offline
- New Member
-
Less
More
- Posts: 17
- Thank you received: 0
3 years 1 month ago #150315
by Manfred Lilge
Replied by Manfred Lilge on topic changes in the calendar template / layout
For the interested audience, I updated default_calendar.php as shown below. I wasn't sure how to get the information that an event was booked by the actual user, so I skipped this and added no further class.
// == ML: ADD EXTRA COLOR STATES ==
$ML_event_states = '';
if($event->total_registrants) $ML_event_states .= ' eb-event-bookings-ML'; // any bookings at all?
if($event->eventFull) $ML_event_states .= ' eb-event-full-ML'; // actually not needed, as eb-event-full already exists
if($event->cut_off_date < date("Y-m-d H:i:s")) $ML_event_states .= ' eb-event-expired-ML'; // cut_off_date passed?
// ================================
?>
<div class="date day_cell">
<a class="<?php echo implode(' ', $eventClasses); echo $ML_event_states; ?>" href="<?php echo $event->url; ?>" title="<?php echo $eventLinkTitle; ?>"<?php if ($eventInlineStyle) echo $eventInlineStyle; ?>>
// == ML: ADD EXTRA COLOR STATES ==
$ML_event_states = '';
if($event->total_registrants) $ML_event_states .= ' eb-event-bookings-ML'; // any bookings at all?
if($event->eventFull) $ML_event_states .= ' eb-event-full-ML'; // actually not needed, as eb-event-full already exists
if($event->cut_off_date < date("Y-m-d H:i:s")) $ML_event_states .= ' eb-event-expired-ML'; // cut_off_date passed?
// ================================
?>
<div class="date day_cell">
<a class="<?php echo implode(' ', $eventClasses); echo $ML_event_states; ?>" href="<?php echo $event->url; ?>" title="<?php echo $eventLinkTitle; ?>"<?php if ($eventInlineStyle) echo $eventInlineStyle; ?>>
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
3 years 1 month ago #150322
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic changes in the calendar template / layout
Could you zip the modified file and upload it here? It could be useful for other customers if they need it
Regards,
Tuan
Regards,
Tuan
Please Log in or Create an account to join the conversation.
- Martin Raymond
- Offline
- New Member
-
Less
More
- Posts: 1
- Thank you received: 0
3 years 1 month ago - 3 years 1 month ago #150796
by Martin Raymond
Replied by Martin Raymond on topic changes in the calendar template / layout
Hi,
Trying to change the calendar layout built by the menu option (not module.
I would like to make the attached document only visible to registered member, and maybe add a drop down in the back end to allow either only registered or not can view the attachment link to the event.
URL: /index.php?option=com_eventbooking&view=event&id=534&catid=15&Itemid=233&lang=en
LOOKED EVERYWHERE and could not find the files to modify,,, anybody can help
Trying to change the calendar layout built by the menu option (not module.
I would like to make the attached document only visible to registered member, and maybe add a drop down in the back end to allow either only registered or not can view the attachment link to the event.
URL: /index.php?option=com_eventbooking&view=event&id=534&catid=15&Itemid=233&lang=en
LOOKED EVERYWHERE and could not find the files to modify,,, anybody can help
Attachments:
Last edit: 3 years 1 month ago by Martin Raymond. Reason: error
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
3 years 1 month ago #150800
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic changes in the calendar template / layout
Hello
You need to find the code in the file components/com_eventbooking/themes/default/common/event_properties.php and do the necessary modification from there
Tuan
You need to find the code in the file components/com_eventbooking/themes/default/common/event_properties.php and do the necessary modification from there
Tuan
Please Log in or Create an account to join the conversation.
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.