2026-04-16 14:01:13 +02:00
|
|
|
# Minimal Profile
|
|
|
|
|
|
|
|
|
|
A Nextcloud 33 app that hides profile fields to create a minimal user profile.
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
|
|
1. Copy the `minimalprofile` folder to your Nextcloud `apps/` directory
|
|
|
|
|
2. Enable the app:
|
|
|
|
|
```bash
|
|
|
|
|
occ app:enable minimalprofile
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
2026-04-16 20:49:47 +02:00
|
|
|
Open browser console (F12) on the settings page and run:
|
2026-04-16 14:01:13 +02:00
|
|
|
|
2026-04-16 20:49:47 +02:00
|
|
|
```javascript
|
|
|
|
|
// Hide pronouns
|
|
|
|
|
localStorage.setItem('minimalprofile_hidden', JSON.stringify(['pronouns']))
|
2026-04-16 14:01:13 +02:00
|
|
|
|
2026-04-16 20:49:47 +02:00
|
|
|
// Hide multiple fields
|
|
|
|
|
localStorage.setItem('minimalprofile_hidden', JSON.stringify(['pronouns','role','headline']))
|
2026-04-16 14:01:13 +02:00
|
|
|
|
2026-04-16 20:49:47 +02:00
|
|
|
// Show all fields
|
|
|
|
|
localStorage.removeItem('minimalprofile_hidden')
|
2026-04-16 14:01:13 +02:00
|
|
|
```
|
|
|
|
|
|
2026-04-16 20:49:47 +02:00
|
|
|
Then refresh the page.
|
2026-04-16 14:01:13 +02:00
|
|
|
|
|
|
|
|
## Available Fields
|
|
|
|
|
|
|
|
|
|
| Field | Description |
|
|
|
|
|
|-------|-------------|
|
|
|
|
|
| `pronouns` | User pronouns (e.g., she/her) |
|
|
|
|
|
| `role` | Job title / role |
|
|
|
|
|
| `headline` | Personal tagline |
|
|
|
|
|
|
|
|
|
|
## Compatibility
|
|
|
|
|
|
|
|
|
|
- Nextcloud 33
|