I am using the newest release of the attendee re-assignment tool, and I notice that it displays ALL events. Even events that are closed. Is it possible to display only events with a status of Open?
PS: I noticed there is a Clone Attendee feature but the Addon page does not explain anything about this feature. Is it just as it sounds? You can duplicate that attendee to another event?
$sql .= " WHERE e.event_status != 'D' AND cr.cat_id = '%d'";
but you’ll have to be more specific about what you consider an “Open” or “Closed” event. For events where the start date is greater than or equal to today’s date, for example:
$sql .= " WHERE e.event_status != 'D' AND cr.cat_id = '%d' AND e.start_date >= '".date(Y-m-d)."'";
but you could also go by the event end date, or the registration end date (which I believe is what the rest of EE goes by).
The attendee clone feature was added recently, and basically does the same thing as the attendee mover, but leaves a copy of the attendee on the old event in addition to moving them onto the new event.
The support post ‘Attendee re-assignment showing closed events’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.