• Hi,

    I’m PRO user.

    I would like to know if it is possible that through a single registration form a person can register for two webinars.

    • This topic was modified 3 years, 2 months ago by javierglez.
Viewing 1 replies (of 1 total)
  • Thread Starter javierglez

    (@javierglez)

    Perhaps something like this???

    function on_new_registration($data) {
    	// handle event
    	WebinarPress :: register_attendee ([
    		'webinar_id' => 123, 
    		'name' => $data'["attendee_name"],       // TO-DO: This must be dinamic !
    		'email' => $data["attendee_mail"]        // TO-DO: This must be dinamic !
    	]);
    	// To-DO: DANGER, INFINITY LOOP!!!
    }
    add_action('wpws_new_registration', 'on_new_registration');
    • This reply was modified 3 years, 2 months ago by javierglez.
Viewing 1 replies (of 1 total)
  • The topic ‘A single registration form for two webinars ?’ is closed to new replies.