daun/statamic-original-filename

Remember the original filenames of assets uploaded in Statamic

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:statamic-addon

pkg:composer/daun/statamic-original-filename

1.1.0 2025-12-19 10:33 UTC

This package is auto-updated.

Last update: 2025-12-19 10:33:34 UTC


README

Remember the original, unsanitized filenames of assets uploaded in Statamic.

This addon stores the original filename of uploaded assets in their metadata, allowing later access even after Statamic has sanitized the filename for compatibility. Useful for allowing downloads with the original name or using it as a worst-case alt text for images.

  • Filename as uploaded: Fauvette à tête noire © Jean Dupont.jpg
  • Filename as sanitized: fauvette-a-tete-noire-jean-dupont.jpg
  • Original filename: Fauvette à tête noire © Jean Dupont

Installation

composer require daun/statamic-original-filename

Usage

Once installed, the addon will store the original filename of each uploaded asset in its metadata under the key original_filename. The filename is saved without the file extension.

Frontend

To offer downloads using the original filename:

{{ asset }}
  <a href="{{ url }}" download="{{ original_filename }}.{{ extension }}">
    Download {{ original_filename }}
  </a>
{{ /asset }}

To use the original filename as fallback alt text for images:

{{ asset }}
  <img src="{{ url }}" alt="{{ alt ?? original_filename }}">
{{ /asset }}

Backend

If you want your editors to see (and possibly edit) the original filename in the control panel, add a text field to your asset blueprint, using original_filename as the handle.

title: Asset
fields:
  -
    handle: alt
    field:
      type: text
      display: Alt Text
+  -
+    handle: original_filename
+    field:
+      type: text
+      display: Original Filename

License

MIT