How to implement this type of events
- James Riley
-
- Offline
- Platinum Member
-
Less
More
9 years 6 months ago #71926
by James Riley
James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Replied by James Riley on topic How to implement this type of events
I'm assuming that you want to keep showing capacity for all other events (and not just turn off the global option).
Could you please provide me with a link to the event on your website? If your template automatically inserts a unique page id class into every page, then we can target the event capacity table row of this event and turn it off via css. If not, I can guide you through adding a page id to your site's template so that that we can target this row.
Could you please provide me with a link to the event on your website? If your template automatically inserts a unique page id class into every page, then we can target the event capacity table row of this event and turn it off via css. If not, I can guide you through adding a page id to your site's template so that that we can target this row.
James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Please Log in or Create an account to join the conversation.
- James Riley
-
- Offline
- Platinum Member
-
9 years 6 months ago - 9 years 6 months ago #71945
by James Riley
James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Replied by James Riley on topic How to implement this type of events
Actually, it looks like Event Booking needs to be tweaked in order to target the specific events.
@Tuan, would it be possible to request a quick core patch in order to allow for greater flexibility in allowing CSS formatting? This is something that I've custom-done on my install, but feel that it could really enable others to take further event-by-event control. I would like the event ID appended as a class to the 4 places where the class eb-event is used. Adding the tag to additional tmpl's would be great too, but these are the key ones for me
Another way of handling this would be to implement the standard Joomla "Class Suffix" box in the advanced settings, with an option to auto-assign an id.
If this is already possible, please let me know! Too often I hack-first and ask-questions later
@Tuan, would it be possible to request a quick core patch in order to allow for greater flexibility in allowing CSS formatting? This is something that I've custom-done on my install, but feel that it could really enable others to take further event-by-event control. I would like the event ID appended as a class to the 4 places where the class eb-event is used. Adding the tag to additional tmpl's would be great too, but these are the key ones for me

file[hr] | code[hr] |
1: view/archive/tmpl/default.php | original: <div class="eb-event"> |
modified:<div class="eb-event eb-eventId-<?php echo JFactory::getApplication()->input->getInt('id'); ?>"> | |
[hr]2: view/history/tmpl/default.php | [hr]original: <div id="eb-registration-history-page" class="eb-container row-fluid eb-event"> |
modified: <div id="eb-registration-history-page" class="eb-container row-fluid eb-event eb-eventId-<?php echo JFactory::getApplication()->input->getInt('id'); ?>"> | |
[hr]3: view/event/tmpl/default.php | [hr]original: <div id="eb-event-page" class="eb-container eb-event"> |
modified:<div id="eb-event-page" class="eb-container eb-event eb-eventId-<?php echo JFactory::getApplication()->input->getInt('id'); ?>"> | |
[hr]4: view/common/events_default.php | [hr]original: <div class="eb-event clearfix"> |
modified: <div class="eb-event clearfix eb-eventId-<?php echo JFactory::getApplication()->input->getInt('id'); ?>"> |
Another way of handling this would be to implement the standard Joomla "Class Suffix" box in the advanced settings, with an option to auto-assign an id.
If this is already possible, please let me know! Too often I hack-first and ask-questions later

James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Last edit: 9 years 6 months ago by James Riley.
Please Log in or Create an account to join the conversation.
- James Riley
-
- Offline
- Platinum Member
-
9 years 6 months ago #71958
by James Riley
James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Replied by James Riley on topic How to implement this type of events
@Leboutte: You could just set the event capacity to 32 (16x2), which would be the number of people you *could* accommodate, and include the disclaimer about "if there are no modules, then the event is full". Oh the simple ideas that come when washing dishes late at night

James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Please Log in or Create an account to join the conversation.
- Leboutte Didier
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 17
- Thank you received: 0
9 years 6 months ago #72010
by Leboutte Didier
Replied by Leboutte Didier on topic How to implement this type of events
Thank you for your response.
Is it possible to display the amounts of the modules? If so, how ?
Best regards
Is it possible to display the amounts of the modules? If so, how ?
Best regards
Please Log in or Create an account to join the conversation.
- James Riley
-
- Offline
- Platinum Member
-
9 years 6 months ago #72028
by James Riley
James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Replied by James Riley on topic How to implement this type of events
All I do on my site is I enter the amount in the value box alongside the option name. Eg:
Value:
--> Module 1 (1 day) - 100 €
--> Module 2 (date 2) - 25 €
- - - - - - - - - - - - - - - - - - - - - - - - -
Another note: I've also changed my default value for the EB_FREE tag in [Event Booking -> translation] from "Free Event" to "Please click REGISTER for more information." Unfortunately, I do also have free events on my site, but I would rather add the work FREE to the event description than have people confused as to why the conference that seemed to be "free" a moment ago is now $200 once they start registering.
@Tuan -- this is another thing that I would like to see added to EB -- the ability to toggle between "free" and "fee based on fee fields", and not just an automatic $0 = FREE assumption
Value:
--> Module 1 (1 day) - 100 €
--> Module 2 (date 2) - 25 €
- - - - - - - - - - - - - - - - - - - - - - - - -
Another note: I've also changed my default value for the EB_FREE tag in [Event Booking -> translation] from "Free Event" to "Please click REGISTER for more information." Unfortunately, I do also have free events on my site, but I would rather add the work FREE to the event description than have people confused as to why the conference that seemed to be "free" a moment ago is now $200 once they start registering.
@Tuan -- this is another thing that I would like to see added to EB -- the ability to toggle between "free" and "fee based on fee fields", and not just an automatic $0 = FREE assumption

James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
9 years 6 months ago #72094
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic How to implement this type of events
@James: That makes sense. Let's implement it in the next release of Events Booking
Regards,
Tuan
Regards,
Tuan
The following user(s) said Thank You: James Riley, Leboutte Didier
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.