Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-sales domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the better-click-to-tweet domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-amazon domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-stats domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114 Attendee re-assignment showing closed events | Event Espresso - Staging Server
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.