---
title: Global settings
description: Plugin-wide options for Ultimate Watermark — backups & originals, right-click protection, drag-and-drop prevention, logged-in user behaviour, and the Pro Display tab.
---
# Global settings
Open Watermark → Settings. These options apply across **all** watermark templates. Per-template options live inside each watermark builder.
All values are stored in the WordPress options key `ultimate_watermark_options` (`SettingsPage.php:192`). The keys below are the literal option keys — useful for programmatic config.
## General tab
### Backups & originals
| Field | Key | Default | What it does |
| --- | --- | --- | --- |
| **Enable backup functionality** | `backup_image` | `0` (form default) | When **on**, the original file is copied to `uploads/ulwm-backup/YYYY/MM/` **before** the watermark is burned in. |
| **Backup strategy** | `backup_strategy` | `full_size` | `full_size` keeps the original full-resolution; alternatives keep less. |
| **Backup quality** | `backup_quality` | `90` | JPEG quality used when re-saving the backup (only for downscaled strategies). |
When backups are on, the **Bulk → Remove watermark** action restores from this folder.
> ⚠️ Disable backups only if you have your **own** off-site backup pipeline. Without backups, you can't restore an image after watermarking.
#### Where backups live on disk
```
wp-content/uploads/ulwm-backup/2026/05/your-image.jpg
```
(`BackupManager.php:62–68,80–84,114–119`).
A backup is created **once per upload** — the first time the image is processed. Subsequent watermark passes don't overwrite the backup.
### Right-click & drag protection
| Field | Key | Default | What it does |
| --- | --- | --- | --- |
| **Disable right click on images** | `disable_rightclick` | `0` | Adds a `contextmenu` listener that suppresses the menu over `` elements. |
| **Prevent drag and drop** | `disable_drag_drop` | `0` | Suppresses `dragstart` on images so visitors can't drag-save. |
| **Enable protection for logged-in users** | `enable_protection_logged_in` | `0` | When **off**, logged-in users can right-click and drag normally. When **on**, even logged-in users get the protection. |
These run via `frontend.js` (`frontend.js:34–41`) — they don't stop a determined user (DevTools shows the original image URL), but they deter casual screenshot-and-save behaviour.
> Note: Some Pro marketing material mentions "hotlink protection." The current code defaults `disable_right_click` and `hotlink_protection` to `false` in OTF settings (`FrontendWatermarkManager.php:168–190`); a server-side hotlink layer isn't shipped. If you need real hotlink protection, use **.htaccess** rules or **Cloudflare Hotlink Protection**.
## Pro: Display tab (per-watermark)
Pro adds a Display tab inside the watermark builder. Toggle on-the-fly rendering, decide whether to apply to post-content images, thumbnails, WooCommerce galleries, and which roles bypass the watermark.
Unlock OTF →