• Resolved michaelruhe

    (@michaelruhe)


    Hi!

    I want my attendees as wordpress users after booking an event. I need this, because I want them in my CRM, that is able to generate contacts from users.

    How do I get Events Made Easy do this?

    I allo bookings from non wordpress users, to generate an easy sign on process. So what I need is that during booking, the attendee data gets into my user DB. Is there any script or setting that does this? Is anyone able to send my e.g. a function.php change?

    Thank you so much für you help!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Franky

    (@liedekef)

    You can hook into eme_insert_rsvp_action , see https://www.e-dynamics.be/wordpress/category/documentation/12-hooks-and-filters/

    To get the person from the passed $booking parameter, use something like this:

    $person = eme_get_person($booking['person_id'];

    The rest of the code (to create a WP user), is to be found in the wordpress documentation.
    Personally, I wouldn’t want all people subscribing to be WP users (I would see if your crm has no available API/hook to do this directly), but I leave that up to you of course.

Viewing 1 replies (of 1 total)

The topic ‘Create users from attendees’ is closed to new replies.