-
Notifications
You must be signed in to change notification settings - Fork 16
mc_import_tribe_tickets_options
github-actions[bot] edited this page Jun 3, 2026
·
4 revisions
Filter My Tickets profile data before saving.
add_filter(
'mc_import_tribe_tickets_options',
function(
array $registration_options,
int $tribe_id,
int $ticket_id,
int $event_post
) {
// Your code here.
return $registration_options;
},
10,
4
);-
array$registration_optionsOptions data to save for new event. -
int$tribe_idTribe event ID. -
int$ticket_idTribe ticket ID. -
int$event_postMy Calendar event post ID.
array
apply_filters( 'mc_import_tribe_tickets_options', $registration_options, $tribe_id, $ticket_id, $event_post )Replace the list footer for upcoming events lists. Default value </ul></div>.
add_filter(
'mc_upcoming_events_footer',
function( string $header ) {
// Your code here.
return $header;
}
);-
string$headerExisting upcoming events footer HTML.
string List header HTML.
apply_filters( 'mc_upcoming_events_footer', $footer )