I would like to strip certain characters from attendee information on frontend registrant submission.
I see there is a AHEE__EE_Single_Page_Checkout__process_attendee_information__end action, but this runs after the information has been saved, I would like to modify some of the data prior to being saved.
You could use the FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item filter hook.
e.g.
add_filter(
'FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item',
function($data) {
// loop/iterate through the $data array and strip characters where applicable
return $data;
}
);
The support post ‘Modify attendee information on submission’ 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.
If you would like help from the Event Espresso staff, then please purchase a support license right now so you can create a support topic in our premium support forums.