SleekView for Gravity Perks: perk-augmented entries as tables
Read gf_entry directly and surface the perk-specific meta keys (Populate Anything sources, Limit Submissions counters, Nested Forms parent IDs) as proper columns. Filter, sort, and triage submissions across perks without per-form drill-downs.
♾️ Lifetime License available
Perks add data, the admin doesn't add columns
Gravity Perks is a bundle of extensions that lean on the same storage as Gravity Forms itself: gf_entry for the entry record and gf_entry_meta for everything else, including the values each perk writes. Populate Anything stamps source-record IDs into meta, Limit Submissions tracks counters, Nested Forms records parent and child entry IDs, GP Easy Pass embeds review tokens. The default Entries screen is per-form and ignores most of those keys, so a workflow that needs perk-aware filtering ends up in the developer console instead of the admin.
SleekView reads gf_entry and pivots gf_entry_meta into named columns, including the perk-specific keys. A nested-forms parent column makes the parent/child relationship visible in one row. A populate-anything source column shows which CRM record the entry was prefilled from. Limit Submissions counters become inline filters so admins can audit caps in real time.
Inline edits route through Gravity's CRUD APIs where supported, so any Gravity Perks hook listening on gform_after_update_entry still fires. Direct table writes are available for back-fill scenarios where you want to suppress side effects. The same view config works on stores using core Gravity Forms only and on stores running every perk in the bundle.
Workflow
Build a perk-aware entry workspace
Read the entry tables
gf_entry as the base. SleekView joins gf_entry_meta for the perk-stamped keys and reads form labels from gf_form so the form column shows readable names.
Pick perk-specific columns
Compose filters that span perks
Edit through CRUD where it matters
is_read, is_starred, and entry status. CRUD path fires perk hooks; direct path skips them on demand for back-fills.
Sample columns
A typical Gravity Perks entries view
gf_entry_meta rows including perk-stamped keys (parent entry ID, source ID, counter) into named columns.
wp_gf_entry + wp_gf_entry_meta
| Entry # | Form | Submitted | Parent | Source | Status |
|---|---|---|---|---|---|
| #612 | Application | Apr 24 | , | CRM #4188 | Unread |
| #611 | Reference | Apr 24 | #612 | , | Read |
| #610 | Reference | Apr 23 | #612 | , | Read |
| #609 | Application | Apr 23 | , | CRM #4185 | Rejected |
Comparison
Default Gravity Forms admin vs SleekView
Default Gravity Forms admin
- Entries scoped per form, perk-stamped meta keys hidden by default
- Nested Forms parent/child relationships aren't a visible column
- Populate Anything source IDs live in meta but don't surface in the list
- Limit Submissions counters are visible only on the form settings screen
- Bulk inline edits across perk-augmented entries aren't first class
SleekView
-
Pivot perk-stamped
gf_entry_metakeys into typed columns - Show Nested Forms parent IDs alongside child entries
-
Filter by Populate Anything
source_object_idin saved views - Surface Limit Submissions counters per form inline
-
Inline-bulk-edit
is_read,is_starred, status across forms
Features
What SleekView gives you for Gravity Perks
Perk meta becomes columns
Each perk that writes to gf_entry_meta exposes its keys to the SleekView column picker. Pick which to surface; the pivot uses a join at query time so newly added perks show up immediately.
Nested Forms parent links
Show parent entry IDs as a column on child submissions. Filter to a parent and see all child reference forms; jump from parent to child views without leaving SleekView.
Populate Anything source filter
Filter entries by the CRM, post, or user record they were prefilled from. Useful for audit trails when applications were drafted from existing customer records.
Audience
Who uses SleekView for Gravity Perks
Operations
Cross-form inbox with perk-stamped columns, filtered to last seven days. Parent/child relationships visible in one row instead of a separate per-form report.
Form admins
Audit Limit Submissions caps in real time, spot Populate Anything sources missing source IDs, and verify Nested Forms hierarchies haven't drifted out of sync.
Support
Pull a customer's entries across every perk-augmented form, including child references, in one view. No screen-jumping to piece together a single application.
The bigger picture
Why perk-augmented data deserves perk-aware admin
Gravity Perks adds a lot of useful behaviour on top of Gravity Forms, Populate Anything for prefill, Nested Forms for parent/child structures, Limit Submissions for caps, Easy Pass for review flows. Every perk writes data into the same gf_entry_meta table that core fields use, which is great for storage and unhelpful for admin UI: the default Entries screen treats meta as opaque key/value pairs and shows none of it as columns. Sites that lean on perks end up with workflows whose source of truth lives in meta but whose admin doesn't surface it.
Ops teams can't see which entries are children of a parent application without opening each one. Auditors can't tell which entries were prefilled from a CRM record without diving into the developer console. Admins managing caps can't see counters near their limits in time to react.
SleekView treats gf_entry_meta as the structured table it actually is, pivots it on demand, and lets perk-stamped keys participate in filters and saved views like any other data. Same database, same hooks when CRUD is used, dramatically more visibility into the work the perks are doing.
Questions
Common questions about SleekView for Gravity Perks
No. SleekView reads gf_entry and gf_entry_meta directly, so any subset of Gravity Perks works. The column picker scans which meta keys exist in your entry data and exposes them, regardless of which perk wrote them. Add perks later and the new keys appear in the picker without re-configuration.
Gravity Perks Nested Forms stores the parent entry ID in a meta key on each child entry. SleekView surfaces that key as a regular column, so child entries show their parent ID inline and you can filter to a single parent to see all its children. Useful for application/reference workflows where multiple sub-forms attach to a master entry.
 
Yes. Populate Anything stamps the source object ID and type into gf_entry_meta when configured to do so. SleekView exposes those keys as columns and filters. The exact key names depend on how Populate Anything was configured in the form, so the column picker reads the actual data rather than assuming a fixed schema.
When SleekView updates entries through Gravity Forms' CRUD APIs, the standard Gravity hooks fire, including gform_after_update_entry, which Gravity Perks listens on for downstream effects (counter updates, conditional logic on save). Direct table edits skip hooks by design for back-fill scenarios where notifications or recalculations should not run.
Limit Submissions stores per-form and per-user counters in options or transients depending on the limit type. SleekView surfaces these where they're queryable, so you can audit which forms are near their cap before users hit a hard error. Counter resets still happen on the schedule the perk configures.
 
For values stored in gf_entry_meta, yes, direct edits go through Gravity's update-meta API where supported. Some perks compute values from other entry data on save, so manual edits to those fields can be overwritten on the next entry update. SleekView flags fields that look perk-managed in the column picker as a soft warning.
GP Easy Pass writes review tokens to entry meta when configured. SleekView exposes those keys as columns; for security you'd typically not want them on a list view, but they're visible on per-entry detail views where the reviewer context is appropriate. Tokens stay in the database; SleekView doesn't transform them.
 The picker scopes meta-key discovery to the selected form (or recent entries when across forms) so it stays responsive even on installations with hundreds of forms and millions of meta rows. You can narrow further by date range. Newly added perk keys appear after the next entry is created against that perk.
 Pricing
More than 1000+
happy customers
Explore our flexible licensing options tailored to your needs. Upgrade your license anytime to access more features, or opt for a lifetime license for ongoing value, including lifetime updates and lifetime support. Our hassle-free upgrade process ensures that our platform can grow with you, starting from whichever plan you choose.
Lifetime ♾️
Most popular
EUR
once
- Unlimited websites
- Lifetime updates
- Lifetime support
...or get the Bundle Deal
and save €250 🎁
The Bundle (unlimited sites)
Pay once, own it forever
Elevate your WordPress site with our exclusive plugin bundle that includes all of our premium plugins in one package. Enjoy lifetime updates and lifetime support. Save significantly compared to buying plugins individually.
What’s included
-
SleekAI
-
SleekByte
-
SleekMotion
-
SleekPixel
-
SleekRank
-
SleekView
€749
Continue to checkout