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