- Posts: 29
- Thank you received: 0
Select Acymailing Lists at event registration
- Martijn Hartong
- Topic Author
- Offline
- Junior Member
-
Less
More
1 year 1 month ago #165443
by Martijn Hartong
Select Acymailing Lists at event registration was created by Martijn Hartong
Please find attached a modification to the EB - Acymailing plugin to Add subscribers to selected list in combination with a Custom List Field with comma separated labels/ values.
I used some jQuery to adapt the List field to my needs. It works, but there is probably a better and simpler way to improve this.
Is it possible to make use of the existing form and selected default lists during registration?
Thanks
I used some jQuery to adapt the List field to my needs. It works, but there is probably a better and simpler way to improve this.
Is it possible to make use of the existing form and selected default lists during registration?
Thanks
Code:
// AcymList
$("select#acymlist > option").each(function() {
var acymlist = $(this).text().trim().split(',',2);
$(this).text(acymlist[0]);
$(this).val(acymlist[1]);
});
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.