Posted: January 6, 2017 at 5:29 am
Hello, Issue: [ESPRESSO_MY_EVENTS] not show multi-pal buy events in (My Account) table Also active + addon “eea-multi-event-registration” if user buy 1+ then more events in one checkout time and after completed, Plugin version: Please help how to fix issue. Thanks |
|
Hi Jay, Are you requesting the ‘Personal Information’ question group for each event? Also is the user providing a different first name, last name (if required) and email address for each ticket? Registrations in the My Events section will only show if the registration is assigned to the current users EE Contact, meaning they will only show if the registration was made with the same details used for the EE Contact/WP User account. |
|
Hello Tony, I have found issue in below added plugin, when added multi pal event in cart and generate different ” $att_id ” so this case not show all bought events items in My Account page table. wrong data print : $template_args = array( ‘event’ => $object, ‘your_tickets_title’ => $your_tickets_title, ‘att_id’ => $att_id ); I am use this short code : [ESPRESSO_MY_EVENTS] Please let me know how to need which changes? <table class=”espresso-my-events-table <?php echo $template_slug;?>_table”> Thanks, |
|
Hi Jay, Currently what you are seeing sounds like the current expected behavior for WP User Integration add-on. As mentioned above:
Are you requesting the ‘Personal Information’ question group for each event? Also is the user providing a different first name, last name (if required) and email address for each ticket? |
|
Hi Tony, I have made below hook and it will work fine. 🙂 Please let me know this code is okay? $query = $wpdb->prepare(“UPDATE {$wpdb->prefix}esp_registration SET ATT_ID=%d WHERE EVT_ID=%d AND REG_code=%s”, $attd_id, $event_id, $reg_code); $is_attd_id = $wpdb->query( $query ); |
|
If the registrations you linking them to add their own personal information questions (which would usually be why they have a new attd_id then you’ll likely run into problems with the above). However you have still not answer my questions so I don’t know if that’s the case. I don’t know where ‘icw_EE_Attendee_ID’ on user meta is from, the default value used by EE is ‘EE_Attendee_ID’ but if your adding that yourself you’ll know where that value was setup. So in terms of the code it looks ok, however your changing the expected behavior of EE Contacts within EE which may cause further issues down the line 🙂 |
|
The support post ‘[ESPRESSO_MY_EVENTS] not show multi-pal buy events in (My Account) table’ 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.