Extra WordPress Filters in Pro (Do something with the age restriction display) | Display Eventbrite Events
add_filter( ‘wfea_age_restriction’, function ( $output, $age) { // do your stuff change $output if ( ‘all_ages’ === $age ) { $output = ‘No Age Restriction’; } return $output; }, 10, 2 );Continue reading