- Posts: 78
- Thank you received: 0
Show title+custom event field in calendar
- IT-Manager Eintracht Triathlon
- Topic Author
- Offline
- Senior Member
-
Less
More
4 years 1 week ago #142930
by IT-Manager Eintracht Triathlon
Show title+custom event field in calendar was created by IT-Manager Eintracht Triathlon
Hi,
Is it difficult to show the event "title+custom event field" in the title-row in calendar view (monthly, weekly and daily view)?
Which files would it require to customize?
Thanks.
Frank
Is it difficult to show the event "title+custom event field" in the title-row in calendar view (monthly, weekly and daily view)?
Which files would it require to customize?
Thanks.
Frank
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Away
- Administrator
-
4 years 1 week ago #142931
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Show title+custom event field in calendar
Hi Frank
For this, you will have to customize code of the extension yourself. The file you need to customize is:
- components/com_eventbooking/themes/default/common/calendar.php
- components/com_eventbooking/themes/default/calendar/weekly.php
- components/com_eventbooking/themes/default/calendar/daily.php
To get data of custom field, you will have to use code like below
Regards,
Tuan
For this, you will have to customize code of the extension yourself. The file you need to customize is:
- components/com_eventbooking/themes/default/common/calendar.php
- components/com_eventbooking/themes/default/calendar/weekly.php
- components/com_eventbooking/themes/default/calendar/daily.php
To get data of custom field, you will have to use code like below
Code:
$params = new JRegistry($event->params);
echo $params->get('name_of_custom_field');
Regards,
Tuan
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.