Admin can export attendees

Add bellow code to functions.php file in child theme

add_filter( 'check_export_attendees',  'check_export_attendees_custom' );
function check_export_attendees_custom( $check ){

    if( current_user_can( 'administrator' ) ){
        return true;
    }
    return $check;
}

Last updated