Modifier: :raw
:raw means different things depending on the merge tag or the kind of field:
- Raw stored date on {date_created}, {date_updated}, {payment_date}
- Unformatted amount on {payment_amount}
- Raw stored date on {now}, {yesterday}, {tomorrow}
Raw stored date
On {date_created}, {date_updated}, {payment_date}.
The value exactly as stored, with no formatting or timezone shift. Beats every other date modifier.
| Product | Gravity Forms |
|---|---|
| Requires | Gravity Forms 1.9 or later |
| Works on | {date_created}, {date_updated}, {payment_date} |
| In the picker | What to show |
Examples
Rendered by real Gravity Forms and GravityKit PHP against a test entry.
| Merge tag | Output | Without the modifier |
|---|---|---|
{date_created:raw} | 2026-01-15 06:00:00 | January 15, 2026 |
{date_updated:raw} | 2026-01-15 06:10:00 | January 15, 2026 |
{payment_date:raw} | 2026-01-15 06:05:00 | January 15, 2026 |
{date_created:raw}Rendered against an entry nine days older, where the result differs. | 2026-01-06 09:00:00 | January 15, 2026 |
{date_updated:raw}Rendered against an entry nine days older, where the result differs. | 2026-01-06 09:10:00 | January 15, 2026 |
{payment_date:raw}Rendered against an entry nine days older, where the result differs. | 2026-01-06 09:05:00 | January 15, 2026 |
Where the merge tag picker offers it
Merge tags: {date_created} · {date_updated} · {payment_date}.
Unformatted amount
On {payment_amount}.
The stored number without currency formatting. Compared against the whole modifier string, so it cannot be combined.
| Product | GravityView |
|---|---|
| Requires | GravityView 1.16 or later |
| Works on | {payment_amount} |
| In the picker | What to show |
Examples
Rendered by real Gravity Forms and GravityKit PHP against a test entry.
| Merge tag | Output | Without the modifier |
|---|---|---|
{payment_amount:raw} | 33.50 | $33.50 |
{payment_amount:raw}Rendered against an entry nine days older, where the result differs. | 15.00 | $33.50 |
Where the merge tag picker offers it
Merge tags: {payment_amount}.
Raw stored date
On {now}, {yesterday}, {tomorrow}.
| Product | GravityView |
|---|---|
| Requires | GravityView 2.30 or later |
| Works on | {now}, {yesterday}, {tomorrow} |
| In the picker | What to show |
Examples
Rendered by real Gravity Forms and GravityKit PHP against a test entry.
| Merge tag | Output | Without the modifier |
|---|---|---|
{now:raw} | 2026-01-15 09:00:00 | January 15, 2026 |
{yesterday:raw} | 2026-01-14 09:00:00 | January 14, 2026 |
{tomorrow:raw} | 2026-01-16 09:00:00 | January 16, 2026 |
Where the merge tag picker offers it
Merge tags: {now} · {yesterday} · {tomorrow}.