SleekView for FluentCRM Automations: funnels, steps & enrolments as tables
FluentCRM stores automation definitions in wp_fc_funnels and per-subscriber progress in wp_fc_funnel_subscribers. SleekView reads those tables so automation owners can audit who is stuck on which step, with filters that combine status, source and last activity.
♾️ Lifetime License available
Audit every funnel enrolment from one table
FluentCRM Automations defines funnels in wp_fc_funnels with conditions stored in wp_fc_funnel_sequences for the ordered steps. Per-subscriber enrolment progress lives in wp_fc_funnel_subscribers with a status column, current step id and a last-executed timestamp. The default automation UI shows funnel-level stats and a per-funnel report, which is useful for one funnel and limited the moment a marketer needs to see all stuck enrolments across every active automation.
SleekView reads wp_fc_funnel_subscribers directly and joins wp_fc_subscribers for the contact email plus wp_fc_funnels for the funnel title and wp_fc_funnel_sequences for the step label. The result is a single table where status, funnel, current step and last activity are first-class columns. Filters can combine "status is waiting", "current step is wait 3 days" and "last activity older than 7 days" to surface enrolments that need a manual nudge.
Inline edits route through FluentCRM hooks where supported, so cancelling an enrolment or moving a subscriber to a different step writes through the plugin's own functions and the automation logs in wp_fc_meta stay consistent. Bulk operations across a filtered view stay safe because every write goes through the same code path the default UI uses.
Workflow
From funnel report to working enrolment table
Connect the funnel tables
wp_fc_funnel_subscribers with joins to wp_fc_funnels for funnel title and wp_fc_funnel_sequences for step label. The agent samples columns and offers ready joins to wp_fc_subscribers.
Compose columns and filters
Pivot custom subscriber fields
wp_fc_meta into typed columns on the enrolment view. Filter by plan tier or company while browsing funnel state, without leaving the table.
Bulk cancel and skip inline
Sample columns
A typical FluentCRM automations enrolment view
wp_fc_funnel_subscribers and joins wp_fc_subscribers, wp_fc_funnels and wp_fc_funnel_sequences for contact, funnel name and step label.
wp_fc_funnels + wp_fc_funnel_subscribers + wp_fc_funnel_sequences
| Subscriber | Funnel | Current step | Status | Last activity | |
|---|---|---|---|---|---|
| Alex Reiter | alex@studio.co | Onboarding 7 day | Wait 3 days | Waiting | Apr 24 |
| Ria Patel | ria@design.io | Trial recovery | Send recovery email 2 | Active | Apr 23 |
| Tom Bailey | tom@hello.dev | Renewal reminder | Check tag is renewed | Active | Apr 22 |
| Mia Brewer | mia@brew.coop | Webinar follow up | Send replay email | Cancelled | Mar 09 |
Comparison
Default FluentCRM Automations admin vs SleekView
Default FluentCRM Automations admin
- Funnel report shows totals per funnel but no cross-funnel enrolment table
-
Stuck subscribers on
waitsteps are hard to surface without opening each funnel -
Filtering enrolments in
wp_fc_funnel_subscribersby status combined with step is not exposed - Last-activity timestamp lives on the row but is not a sortable column in the UI
- Bulk cancel or skip step across a filtered set requires per-row clicks
SleekView
-
Read directly from
wp_fc_funnel_subscriberswith joins towp_fc_funnelsandwp_fc_funnel_sequences - Filter on status, funnel, current step and last activity together in one saved view
- Inline-edit status to cancel or pause enrolments through FluentCRM's own hooks
- Surface stuck waits older than N days as a saved filtered view
- Switch between subscribers, funnels and broadcasts in tabbed SleekView pages
Features
What SleekView gives you for FluentCRM Automations
Enrolment filters that compose
Combine status, funnel id, current step and last-activity age into one filter. wp_fc_funnel_subscribers becomes a working list, not a hidden audit trail behind each funnel.
Subscriber context on every row
Join wp_fc_subscribers for email, lists and tags alongside the enrolment row. One screen for both who they are and where they sit in each automation.
Inline cancel and skip
Cancel an enrolment or skip the current step from the row. Writes go through FluentCRM hooks so wp_fc_meta logs and funnel stats stay consistent with the default UI.
Audience
Who uses SleekView for FluentCRM Automations
Lifecycle marketers
Audit every active funnel from one table, surface enrolments stuck on a wait step longer than seven days, and resume or cancel them inline without opening each automation.
Marketing operations
Cross-check funnel status against wp_fc_subscribers tags and lists for QA after a funnel edit. Filter by funnel id and status to confirm the rebuild behaved as intended.
Customer support
Look up a subscriber by email and see every funnel they are enrolled in, current step and last activity. Cancel an over-eager renewal flow from the same row before it sends.
The bigger picture
Why enrolment context belongs on the row
FluentCRM made an intentional decision to keep automation state in dedicated tables rather than postmeta, which is exactly why funnels can scale to tens of thousands of enrolments on a single WordPress install. The default automation UI focuses on per-funnel reporting because that is the most common need when building or tuning one automation. The cost is that cross-funnel operational questions are hard to answer in the same screen.
"Which subscribers are stuck on any wait step for more than seven days" and "which lifecycle stages are over-represented in cancellation funnels right now" need a different shape of view. SleekView gives that shape by reading wp_fc_funnel_subscribers with joins, exposing the columns and filters marketers actually want, and routing inline edits through FluentCRM's own enrolment functions so audit logs stay correct. Marketing ops can audit a funnel rebuild in minutes.
Support can resolve an over-eager renewal flow with one click. Lifecycle marketers can find and unstick the rows that quietly drag conversion. The tables are already there, and the schema was always intended to support this kind of work.
Questions
Common questions about SleekView for FluentCRM Automations
Custom tables. Funnels live in wp_fc_funnels, step definitions in wp_fc_funnel_sequences and per-subscriber enrolments in wp_fc_funnel_subscribers. SleekView queries those directly with joins to wp_fc_subscribers for contact details.
Yes. Filter wp_fc_funnel_subscribers by status equals waiting and current step type equals wait, then sort by last activity ascending. The oldest stuck enrolments appear at the top in one view.
Yes. Cancel, pause and skip-step writes route through FluentCRM's enrolment functions where available, so wp_fc_meta logs and per-funnel stats update the same way as the default UI.
FluentCRM stores custom fields in wp_fc_meta keyed by subscriber id. SleekView pivots them into typed columns on the enrolment view so you can filter by company, plan tier or any other custom field while browsing funnel state.
Yes. SleekView paginates server-side and uses indexes on wp_fc_funnel_subscribers.status and funnel_id. Tens of thousands of enrolments with combined filters render quickly because no postmeta scan is involved.
Yes. Select the filtered set, choose bulk cancel, and SleekView calls FluentCRM's cancel function per row. Capability gating keeps that action scoped to roles allowed to manage automations.
 
Broadcasts live in wp_fc_campaigns and per-send rows in wp_fc_campaign_emails. You can build a parallel view stack so marketers move between funnel enrolments, broadcast status and per-subscriber email history in one SleekView page.
No. SleekView is read-first on the same tables FluentCRM populates, and writes go through the plugin's own functions. Reports keep counting the same rows; SleekView just exposes them as a working table.
 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
- Woocommerce Measurement Price
- Woocommerce Conditional Shipping And Payments
- Woocommerce Sagepay
- Woocommerce Loyalty Program
- Thirstyaffiliates
- Woocommerce Show Single Variations
- Woocommerce Product Search
- Woocommerce Laybuy
- Woocommerce Stock Sync
- Woocommerce Sage Accounting
- Wcfm Delivery
- Wcfm Vendor Verification
- Woocommerce Multilingual Currency
- Woocommerce Wholesale Gateway
- Woocommerce Shipment Tracking Pro