Posted: February 6, 2014 at 6:40 am
|
Hi If you mark a name as attended and then unmark them a duplicate check-in date/time stamp entry appears in the excel spreadsheet. I also had a person who was registered once yet appears three times in the list – twice as attended/un-attended and then once as nothing at all. Also, I can’t see how to filter the column so you get all those who attended and are marked as such and those that registered but are no shows. Thanks |
Hi Nicholas,
I am seeing the duplicate issue as well. Very strange. It may be that the SQL query is joining on the check-in date column (screenshot: http://www.screencast.com/t/nXQAQWE59drq), then showing them as duplicates, because it still shows as one record in the database. I’ll create a ticket for the developers.
Are you talking about the Event Espresso admin or the Excel file? |
|
|
Thanks for looking into it. The second question is about the admin – the client wants to be able to filter between those marked attended/unattended and then export this to excel for their own CRM system. It seems obvious but I couldn’t see how to achieve this. |
|
There isn’t a way to do that currently, it would have to be a little customization job to do it. Probably 2 support tokens would cover the time required. |
|
Hi Do we know when the duplication of entries in the export might be fixed? I had a client review meeting and she was asking about the multiple entries shown. I did remark that this could have been due to marking/unmarking attendees but it would be useful to know how it could be avoided. Thanks |
|
If you go into includes/functions/export.php and put this in right after line 429, it will fix it: $rebuild_participants = array(); foreach ($participants as $participant) { $rebuild_participants[$participant->att_id] = $participant; } $participants = $rebuild_participants; |
|
Hi I was getting a parse error at line 431 after adding the code and it wouldn’t export. I checked and it was exactly as shown, let me know what the adjustment is. |
|
I copied and pasted it into a different test setup and it seems to work fine. I’ll include some of the code around the part that I added above, so you can see it in context. $participants = $wpdb->get_results($sql); |
The support post ‘Attendee excel export has duplicate entries’ 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.