Attachment Browser in ACP

I was wondering, is there any way to make attachment browser in acp show files by type? Like all zip files or all rar files or group them jpg,jpg....jpg....png,png,png,avi,avi
 
There is no such option.

You can query the database to select a specific file extension:

Rich (BB code):
SELECT *
FROM xf_attachment_data
WHERE filename LIKE '%.jpg';

But this might not be useful to you depending on what you want to do with those attachments.
 
There is no such option.

You can query the database to select a specific file extension:

Rich (BB code):
SELECT *
FROM xf_attachment_data
WHERE filename LIKE '%.jpg';

But this might not be useful to you depending on what you want to do with those attachments.
I know what one, but im asking is there way to add this to attachment browser show only jpg files like it show attachments from personal conversations or boards
 
Top Bottom