it would be very hard to impliment into WWF as it wasnt designed as a support ticket software, but this is how i would do it.
now, i dont know the database structure off the top of my head, but wouldnt it just be a case of getting a "Latest Posts" mod and changing the SQL for the following:
Unanswered Topics
strSQL = "select * from tblTopics where tblTopics.Replies = 0 and tblTopics.closed = false order by last_post_date desc"
Answered But Not Closed Topics
strSQL = "select * from tblTopics where tblTopics.Replies > 0 and tblTopics.closed = false order by last_post_date desc"
Resolved Topics
strSQL = "select * from tblTopics where tblTopics.closed = true order by last_post_date desc"
now, these are completely wrong table and field names as am not sure. but you get the jist of it.
(will edit with correct table and field names tomorrow)
Edited by Scotty32 - 21 June 2007 at 10:01pm