queue

  1. ENXF NET

    XF 1 Tip Approve all moderated posts (queries)

    You can run these two queries to approve all moderated posts: DELETE FROM xf_moderation_queue WHERE content_type = 'post'; UPDATE xf_post SET message_state = 'visible' WHERE message_state = 'moderated'; And here are the queries to approve all moderated threads: DELETE FROM xf_moderation_queue...
  2. ENXF NET

    XF 1 Tip Soft delete all moderated posts (queries)

    You can run these queries to soft delete all moderated posts. You need to change the red pieces to attribute these deletions to a user_id and username, as well as give the reason. These things are recorded in the deletion log: INSERT INTO xf_deletion_log (content_type, content_id, delete_date...
  3. ENXF NET

    xF2 Add-on AndyB Approval queue menu 1.5

    Description: Adds a menu to the approval queue. With this add-on you can manage each content type individually. (Example of Approval queue menu) (Example of Options page) Installation: Download Andy-ApprovalQueueMenu-1.1.zip and unzip it. Copy the src/addons/Andy/ApprovalQueueMenu...
Top