XF 1.5 Delete all Moderation Queue?

iGee

Member
Hello,

I have over 1,000 posts that need to be Moderated, but i'd like to start fresh and delete the whole queue.

How can I do this? Currently I can only see an option to individually delete each post in the queue?

Thanks,
 
Technically, you do need to set the options individually. However, you might be able to use a little JavaScript via Chrome's dev tools console while on the page to select all of the delete options at once:
Code:
$('input[type=radio][value=delete]').click()
 
Top Bottom