- Posts: 37
- Thank you received: 0
Custom fields not editable in back end
- penguinhead
- Topic Author
- Offline
- Junior Member
-
Less
More
14 years 5 months ago #5443
by penguinhead
Custom fields not editable in back end was created by penguinhead
Hi Team
Great products, I have bought a few of them already and well developed and very flexible. However, I have a couple of queries.
(1) Custom fields are not editable when entering registrations manually via the back end which is a bit of a problem.
(2) The second query I have is whether the code can easily be edited to enforce everyone to register using the group booking even if there is only one person to register. The reason for this is to allow parents to register their children in a program/activity where I collect the childs info, then the parents info via the billing info. Is this easily able to be done?? What code prevents the system from allowing 1 person to enrol via the group booking method?
thanks Mike
Great products, I have bought a few of them already and well developed and very flexible. However, I have a couple of queries.
(1) Custom fields are not editable when entering registrations manually via the back end which is a bit of a problem.
(2) The second query I have is whether the code can easily be edited to enforce everyone to register using the group booking even if there is only one person to register. The reason for this is to allow parents to register their children in a program/activity where I collect the childs info, then the parents info via the billing info. Is this easily able to be done?? What code prevents the system from allowing 1 person to enrol via the group booking method?
thanks Mike
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
14 years 5 months ago - 14 years 5 months ago #5467
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: Custom fields not editable in back end
Hi
Regarding the issue #1, I will check it and get back to you later (on tomorrow because it is very late here now - I had spent full time to rebuild joomdonation.com website in the last few days, will update the new site to server on tomorrow) .
Regarding issue #2, the solution is that :
- You edit the event, set registration type to Only Group Registration .
- Open the file components/com_eventbooking/views/register/group.php, look at line 54 :
Change it to :
Hope this help !
Thanks,
Tuan
Regarding the issue #1, I will check it and get back to you later (on tomorrow because it is very late here now - I had spent full time to rebuild joomdonation.com website in the last few days, will update the new site to server on tomorrow) .
Regarding issue #2, the solution is that :
- You edit the event, set registration type to Only Group Registration .
- Open the file components/com_eventbooking/views/register/group.php, look at line 54 :
Code:
if (parseInt(form.number_registrants.value)< 2) {
alert("<?php echo JText::_('EB_NUMBER_REGISTRANTS_IN_VALID'); ?>");
form.number_registrants.focus();
return ;
}
Change it to :
Code:
if (parseInt(form.number_registrants.value)< 1) {
alert("<?php echo JText::_('EB_NUMBER_REGISTRANTS_IN_VALID'); ?>");
form.number_registrants.focus();
return ;
}
Hope this help !
Thanks,
Tuan
Last edit: 14 years 5 months ago by Tuan Pham Ngoc.
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.