Last updated July 11, 2026, Version 0.34
Filters the default state of the event updates opt-in.
This filter allows modification of the default opt-in state for compliance with privacy laws such as the European Union’s GDPR (known in Germany as the DSGVO) that may require opt-in consent to be unchecked by default.
Auto-generated Example
add_filter(
'gatherpress_event_updates_default_opt_in',
function(
string $string_default_opt_in_default_opt-in_state,
int $user_id
) {
// Your code here.
return $string_default_opt_in_default_opt-in_state;
},
10,
2
);
Parameters
string$string_default_opt_in_default_opt-in_stateOther variable names:$1int$user_idThe user ID.
Files
apply_filters( 'gatherpress_event_updates_default_opt_in', '1', $user_id )