✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount

SleekView for Co-Commenter: collaborative comments as tables

Co-Commenter layers multi-author claims onto wp_comments via wp_commentmeta keys. SleekView pivots co-author IDs, claim timestamps, and revision history into a flat moderation table.

♾️ Lifetime License available

SleekView table view for Co-Commenter

Collaborative comment claims as a flat audit log

Co-Commenter lets multiple WordPress users co-author a single comment thread, with claim and revision metadata stored in wp_commentmeta alongside the original wp_comments row. Keys like cc_co_authors (serialised user IDs), cc_claimed_at, cc_revision_count, and cc_last_editor capture who joined a thread and when. The default WordPress comments screen treats each row as single-author, so the entire collaboration layer is invisible until you query the meta keys directly.

SleekView reads wp_comments, joins wp_commentmeta rows whose keys start with cc_, and pivots them into columns. Primary author, co-author list, claim timestamp, revision count, and last-editor all become first-class sortable columns. Filter to threads with more than two co-authors, sort by revision count to find heavily edited rows for review, or scope to a single editor's recent activity for performance audits.

Inline edits route through update_comment_meta and the plugin's own claim API where available, so existing notification and locking logic still fires. For data-cleanup tasks on orphaned claim rows, direct wp_commentmeta writes are available with conflict detection.

Workflow

Pivot co-author metadata into a flat audit table

1

Pick wp_comments as source

Scope to comments with at least one cc_* meta row, or leave open and use the column for filtering. SleekView joins wp_commentmeta rows for each comment.
2

Compose collaboration columns

Add primary author, co-author list, revision count, last-editor, claim timestamp, and comment status. Drop or rename any column per saved view.
3

Save scoped views

Save one view for editorial leads (per-editor productivity), one for moderators (pending with high revision count), and one for admins (orphan-claim audit).
4

Edit claims inline or in bulk

Add or remove a co-author from a row, or bulk-clear orphan claims after a user deletion sweep. Writes route through the plugin's API where available, with hooks intact.

Sample columns

A typical co-authored comment audit view

Pivots cc_* keys from wp_commentmeta next to the original wp_comments row.
Source: wp_comments + wp_commentmeta (cc_* keys)
Comment Primary author Co-authors Revisions Last editor Status
Joint reply on caching plan alex@studio.co ria, tom 5 ria@design.io Approved
Co-authored FAQ response ria@design.io alex 2 alex@studio.co Approved
Draft: pricing clarification tom@hello.dev alex, mia 8 mia@brew.coop Pending
Orphan claim, primary deleted (removed) tom 3 tom@hello.dev Conflict

Comparison

Default Co-Commenter admin vs SleekView

Default Co-Commenter admin

  • Co-author claims live in wp_commentmeta with no list screen
  • Revision count and last-editor aren't surfaced inline
  • Orphaned claims (primary author deleted) aren't flagged anywhere
  • Filtering by "comments with more than one author" needs SQL
  • Per-editor productivity views aren't a built-in screen

SleekView

  • Pivot cc_* commentmeta into flat co-author columns
  • Filter by co-author count, revision count, or last editor
  • Surface orphaned claims for cleanup with a single filter
  • Sort by revision count to find heavily edited threads
  • Save per-editor views for productivity audits

Features

What SleekView gives you for Co-Commenter

Co-author list as a column

Serialised cc_co_authors arrays expand into a readable list column, joined back to wp_users for display names. Filter on "contains user X" without writing SQL against serialised meta.

Revisions and last editor

cc_revision_count and cc_last_editor pivot into sortable columns. Sort descending to find heavily edited threads, useful for QA review or training new co-authors.

Orphan-claim audit

Surface rows where cc_co_authors points at a user ID that no longer exists, or where the primary author was deleted, so cleanups don't leave dangling claim metadata.

Audience

Who uses SleekView for Co-Commenter

Editorial leads

Per-editor productivity views by revision count and last-edited timestamp, used in weekly retros to balance load across the co-authoring team.

Moderators

Pending co-authored threads with multiple revisions surfaced for review before approval, preventing low-quality consensus replies from going live.

Site admins

Orphan-claim cleanups after user deletions, plus periodic audits of which threads have grown a long co-author list and may need consolidation.

The bigger picture

Why collaborative comment ops need their own workspace

Co-authored comments are a small idea with large operational consequences. Once a team commits to multi-author reply workflows, the productive question stops being "is this comment approved" and becomes "who claimed which thread, who edited last, and how many revisions did it take to land". That metadata lives in wp_commentmeta from day one, but no admin screen surfaces it.

The result is editorial leads who can't run retros without a SQL session, moderators who can't tell which pending replies have already churned through five revisions, and site admins who quietly accumulate orphaned claim rows every time a contributor leaves. SleekView makes the collaboration layer visible as columns: co-author list, revision count, last editor, claim timestamp. The plugin's own claim API stays in the write path so locking and notifications keep firing, while direct meta writes handle clean-up cases where notifications would be noise.

Same data Co-Commenter has always stored, finally legible as a working table.

Questions

Common questions about SleekView for Co-Commenter

Co-Commenter leans on the core wp_comments table and adds claim, revision, and last-editor metadata as wp_commentmeta keys prefixed with cc_. SleekView pivots those keys into named columns alongside the original comment row.

 

Yes. Adding or removing a co-author writes through the plugin's claim API where available, falling back to update_comment_meta with conflict detection. The plugin's own locking and notification logic fires as it would on the per-row edit screen.

 

SleekView joins cc_co_authors user IDs back to wp_users and flags rows pointing at IDs that no longer exist. Same check runs against the primary author. The orphan filter surfaces them for cleanup in one pass.

 

If the write goes through the plugin's claim API, the standard removal hooks fire and any subscribed parties receive the configured notifications. Direct wp_commentmeta writes skip notifications, which is the safer choice for silent back-fill on retired threads.

 

Yes. cc_revision_count is a numeric meta value SleekView treats as a sortable, filterable column. Common saved view: cc_revision_count >= 5 filtered to hold status, used for QA review.

 

Co-Commenter typically stores a serialised revision array in wp_commentmeta. SleekView exposes the count and timestamps as columns; for the full per-revision body diff, jump to the plugin's own detail screen via the row's inline link.

 

wp_commentmeta is indexed on comment_id and meta_key, so filtered queries stay fast. SleekView paginates server-side and scopes the meta join to only the keys included in the view's column list.

 

Yes. Save a view filtered by cc_co_authors containing current_user_id() and gate it by capability. Each editor sees only threads they have claimed; leads keep the global view.

 

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.

Starter

€79

EUR

per year

  • 3 websites
  • 1 year of updates
  • 1 year of support

Pro

€149

EUR

per year

  • Unlimited websites
  • 1 year of updates
  • 1 year of support

Lifetime ♾️

Most popular

€249

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