SleekView for Formidable Forms Views: entries as customizable tables
Reads from frm_items and pivots frm_item_metas into proper columns. Cross-form filters, saved views, and bulk inline edits without writing a single Views template.
♾️ Lifetime License available
Entries as a real table, not hand-built Views templates
Formidable Forms stores submissions as rows in frm_items, with each field value living in frm_item_metas in long format (one row per field per entry). The default admin lists entries per form, and Formidable Views requires writing a separate template for any custom layout. Cross-form filters, payment-status audits, and bulk-edit of is_draft all become side projects rather than built-in moves.
SleekView reads frm_items and frm_item_metas together, pivoting meta rows into named columns sourced from each form's field labels in frm_fields. Add form_id as a column and the per-form silo disappears: contact entries, demo requests, and order submissions sit in one workspace. Filter by created_at, user_id, is_draft, or any meta field, then save the result as a named view.
Edits route through Formidable's entry API where the field type supports it, with direct writes to frm_items or frm_item_metas as a fallback for fields the API doesn't fully expose. Conflict detection compares the row timestamp before each write so two staff members editing the same entry don't silently overwrite each other.
Workflow
From frm_item_metas long-format to a real table
Point at frm_items
frm_items as the base. SleekView reads frm_forms and frm_fields to discover forms and their fields, so the column chooser knows your real schema.
Pivot meta into columns
frm_item_metas as a column. The pivot runs at query time using a join, so new form fields appear immediately.
Filter and save the view
form_id, created_at, is_draft, and field-level meta filters in one saved view. Scope the view to specific roles so support, finance, and admins each see their own slice.
Edit inline or in bulk
is_draft, update a meta field, or change status across many rows. Formidable's entry API handles validation; conflicts surface inline before the write.
Sample columns
A typical Formidable Forms Views entry table
frm_item_metas into proper columns so you stop scrolling {field_id, meta_value} pairs.
wp_frm_items + wp_frm_item_metas + wp_frm_fields
| Entry # | Form | Created | Amount | Status | |
|---|---|---|---|---|---|
| #1428 | Contact | Apr 24 | alex@studio.co | Draft | |
| #1427 | Quote | Apr 24 | ria@design.io | $420 | Complete |
| #1426 | Order | Apr 23 | tom@hello.dev | $129 | Paid |
| #1425 | Order | Apr 23 | mia@brew.coop | $129 | Failed |
Comparison
Default Formidable Forms Views admin vs SleekView
Default Formidable Forms Views admin
- Entry listings are scoped to one form at a time in the default screen
- Custom layouts require building a Formidable View template per use case
-
frm_item_metasstays in long format until pivoted manually with shortcodes -
Bulk edits to
is_draftor status fields aren't first-class in the admin - Cross-form audits (e.g. paid orders across all forms) need custom SQL or exports
SleekView
-
Cross-form entry table with
form_idas a sortable column -
Pivot
frm_item_metasinto typed columns usingfrm_fieldslabels -
Filter by
created_at,user_id,is_draft, and any meta key together - Inline-edit field values without writing a Views template
- Save filtered views per role (e.g. support, finance, form admins)
Features
What SleekView gives you for Formidable Forms Views
Pivot meta into named columns
Formidable stores field values as one row per field in frm_item_metas. SleekView joins frm_fields to label each pivoted column with the field name you set in the form builder.
Combine filters across forms
Mix form_id, created_at, is_draft, and arbitrary meta filters in one saved view. Cross-form inboxes and per-form triage share the same query engine.
Inline-edit without View templates
Change a field value, toggle is_draft, or update a status across many rows. Formidable's entry API handles validation; direct table writes cover field types the API does not fully expose.
Audience
Who uses SleekView for Formidable Forms Views
Sales and support
Triage inbound entries across every form in one table. Filter to is_draft = 0 from the last seven days, star priority leads, bulk-mark resolved once the thread closes.
Finance
Paid order entries by date range, with the payment-amount meta field as a sortable column. Reconcile against Stripe payouts inline, export the filtered set for the bookkeeper.
Form admins
Audit which forms still receive submissions, spot abandoned drafts in frm_items, and clean up old entries by form_id in a single pass.
The bigger picture
Why Formidable entry triage needs a real table
Formidable Forms is the go-to for sites that need calculated fields, repeating sections, and front-end forms with directory views. The schema scales because frm_item_metas is long-format: any field type fits without migrations. The same design makes operational work harder, because long-format data is unreadable until you pivot it, and Formidable Views asks you to build a template before a list is useful.
Sales teams want one inbox for every form; finance wants paid orders across the site for reconciliation; form admins want to spot which forms have stalled. None of those are easy in the default screen and they shouldn't require a Views template each. SleekView treats frm_items the way a database admin would, as a queryable source where pivots are cheap and filters compose.
The result is a workspace that any role can use without writing a layout file.
Questions
Common questions about SleekView for Formidable Forms Views
It replaces the admin-side use of Views (building tables and listings for staff). Front-end Views (public-facing directories rendered with shortcodes) are still a job for Formidable Views. SleekView focuses on WP Admin: cross-form tables, filtered triage workspaces, and inline editing.
 
SleekView joins frm_item_metas to frm_items by item_id and reads frm_fields for the field label and type. Each unique field becomes an addable column at query time, so newly added form fields appear immediately without a rebuild step.
Yes. SleekView writes through Formidable's entry update API where the field type is supported (text, email, number, select, checkbox, date). For field types the API doesn't fully expose, SleekView writes directly to frm_item_metas with conflict detection on the row's updated_at.
Repeating sections in Formidable create child entries linked by parent_item_id. SleekView exposes those as a related table view, with the parent entry as the anchor and child rows visible in an expanded row drawer. Aggregations like "row count" can be shown as a column.
File upload fields store attachment IDs in frm_item_metas. SleekView renders them as thumbnail or filename cells linked to the media library, and the filter "has attachment" works without per-form scripting.
Yes. Add form_id as a column and filter to a subset of forms or leave it open. Only meta keys shared across the selected forms become useful as columns; SleekView labels which fields belong to which form so the column chooser stays sensible.
SleekView reads the form's permission configuration in frm_forms.options and the role checks Formidable applies at the entry level. A view that includes entries from a restricted form is hidden from roles without access; inline edits still go through the same capability checks.
Drafts live in frm_items with is_draft = 1. SleekView treats them as a separate filterable state, so you can audit drafts per form, bulk-clean stale ones, or convert them by editing the flag through the entry API.
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 checkoutBrowse more
- Curcy Multi Currency
- Woocommerce Aftership
- Woocommerce Octobat
- Yith Woocommerce Bookings
- Woocommerce Roles Pricing
- Edd Aweber
- Woocommerce Quotes Orders
- Woocommerce Pdf Invoices Packing Slips
- B2bking
- Yith Woocommerce Affiliates
- Woocommerce Invoice System
- Woocommerce Pre Orders
- Woocommerce Criteo
- Woocommerce Tnt Shipping
- Woocommerce Csv Import Suite