PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Bulk "Mark As Read" Entries?

  1. Until recently, I relied on reading / responding to entries via my Mail program. However I just started using the Gravity Form dashboard widget and it says I have 3320 Unread messages. Is there any way, even if it means going into phpMyAdmin, and just marking all the old entries as read?

    Much thanks!

    Posted 12 years ago on Thursday February 23, 2012 | Permalink
  2. Hi, Goob,

    "Mark as Read" is an option available in the Bulk Action drop down when viewing entries. You can filter by the unread entries and select all for a page and mark them read.

    Considering you have 3320 unread entries, you may want to directly update the database if using the interface is too painful. To do this you would update your "rg_lead" table like the example below. You need to replace "wp_rg_lead" with your lead table name and set form_id= to whatever your form's id is. This example will update any entries for the form specified that aren't already read to be read.

    update wp_rg_lead set is_read=1 where form_id=53 and is_read=0

    Posted 12 years ago on Monday February 27, 2012 | Permalink
  3. Thank you, Dana, that was exactly what I needed!

    Posted 12 years ago on Monday February 27, 2012 | Permalink

This topic has been resolved and has been closed to new replies.