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
Code:
// AcymList
$("select#acymlist > option").each(function() {
var acymlist = $(this).text().trim().split(',',2);
$(this).text(acymlist[0]);
$(this).val(acymlist[1]);
});