Action: rtec_after_form_submission_success
rtec_after_form_submission_success is an action that runs after a valid registration is completed, the entry has been added to the database, and any emails have been […]
Filter: rtec_email_templating
rtec_email_templating is a filter for adding or altering the email templating text. Enter the template and what the template represents as a key value pair. […]
Action: rtec_the_attendee_list
rtec_the_attendee_list is an action that runs when the attendee list option is enabled for an event. It accepts one parameter of the $registrants_data which contains […]
Filter: rtec_event_meta
rtec_event_meta is a filter for the event_meta array before it’s returned by the function “rtec_event_meta”. It accepts an argument of the event_meta that has been […]
Action: rtec_before_display_form
rtec_before_display_form is an action that runs before the attendee list and form is displayed. It accepts an argument array of the event_meta. The pro version […]
Action: rtec_after_registration_submit
rtec_after_registration_submit is an action that runs after a valid form is submitted, the entry has been added to the database, and any emails have been […]
Filter: rtec_fields_attributes
rtec_fields_attributes is a filter for dynamically altering form fields. Usage <?php add_filter( ‘rtec_fields_attributes’, ‘function_name’ ); ?> Changelog Pro 1.0 – introduced Free 2.0 – introduced […]
Filter: rtec_user_data Pro only
rtec_user_data is a filter for dynamically assigning user data for use in form fields. Usage <?php add_filter( ‘rtec_user_data’, ‘function_name’ ); ?> Changelog Pro 2.5 – […]
Filter: rtec_email_recipients Pro only
rtec_email_recipients is a filter for dynamically assigning email addresses to the list of recipients for email messages sent from the plugin. Usage <?php add_filter( ‘rtec_email_recipients’, […]
Filter: rtec_payments_line_items Pro only
rtec_payments_line_items is a filter for dynamically adding or changing line items right before checkout. Usage <?php add_filter( ‘rtec_payments_line_items’, ‘function_name’, 10, 2 ); ?> Parameters $line_items […]
Filter: rtec_payments_discounts Pro only
rtec_payments_discounts is a filter for dynamically adding or changing discounts right before checkout. Usage <?php add_filter( ‘rtec_payments_discounts’, ‘function_name’, 10, 2 ); ?> Parameters $discounts – […]