MyBB Community Forums

Full Version: Attachment Borders
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys.

I need to remove the border and information from the attachment section.
The snapshot below shows the border, "Attached Files" and "Thumbnails" all of which I need to remove so only the actual image attachment / thumbnail is presented on the page.

Which files / template bits do I need to edit?

Thanks.
postbit_attachments is the template you will need to change...

Original:
<br />
<br />
<fieldset>
<legend><strong>{$lang->postbit_attachments}</strong></legend>
{$post['attachedthumbs']}
{$post['attachedimages']}
{$post['attachmentlist']}
</fieldset>

New:
<br />
<br />
><strong>{$lang->postbit_attachments}</strong>
<br />
{$post['attachedthumbs']}
{$post['attachedimages']}
{$post['attachmentlist']}

Alter it to suit your needs.
That's great, but it's still showing the "Thumbnails(s)" text.
How would I remove that?
Look for the thumbnails template.

"postbit_attachments_thumbnails"

I think you can handle the rest. Please begin to familiarize yourself with mybb's template SEARCH feature. It might help you. Much of mybb is simple common sense.
I will do exactly that. And thanks for the support.