Hiding Attachment Container

Divvens

Well-known member
Is it possible to hide the attachment container on a post? As in when someone attaches an image and does not add it into the post (either full or thumbnail) there is a bloc shown with "Attached files", I want to hide that attached files box from all members :P
 
You can add this to EXTRA.css:
Code:
.attachedFiles {
display: none;
}

However, all attachments use that class, including non-images.
So you will also prevent those from displaying.
 
You can add this to EXTRA.css:
Code:
.attachedFiles {
display: none;
}

However, all attachments use that class, including non-images.
So you will also prevent those from displaying.
Thanks Brogan!
We don't use attachments for other files so that's fine ^^ Thanks again.
 
You can add this to EXTRA.css:
Code:
.attachedFiles {
display: none;
}

However, all attachments use that class, including non-images.
So you will also prevent those from displaying.
How to do this if they are a guest? but let it show to other members?
 
Is it possible to hide the attachment container on a post? As in when someone attaches an image and does not add it into the post (either full or thumbnail) there is a bloc shown with "Attached files", I want to hide that attached files box from all members :p

Curious why you would like to do that.
 
Top Bottom