PDA

View Full Version : Attachment display like vBulletin.org


Ntfu2
01-09-2007, 10:00 PM
This is simple, only tested in postbit_legacy template, though postbit should be similar/same

AdminCP -> style and templates -> Postbit Templates -> postbit_legacy

find:

<if condition="$show['attachments']">
<!-- attachments -->
<div style="padding:$stylevar[cellpadding]px">

<if condition="$show['thumbnailattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_thumbnails]</legend>
<div style="padding:$stylevar[formspacer]px">
$post[thumbnailattachments]
</div>
</fieldset>
</if>

<if condition="$show['imageattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_images]</legend>
<div style="padding:$stylevar[formspacer]px">
$post[imageattachments]
</div>
</fieldset>
</if>

<if condition="$show['imageattachmentlink']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_images]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[imageattachmentlinks]
</table>
</fieldset>
</if>

<if condition="$show['otherattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_files]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[otherattachments]
</table>
</fieldset>
</if>

<if condition="$show['moderatedattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attachments_pending_approval]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[moderatedattachments]
</table>
</fieldset>
</if>

</div>
<!-- / attachments -->
</if>

replace with:


<if condition="$show['attachments']">
<h2>Downloads</h2>
<hr />
<if condition="$show['thumbnailattachment']">
<div style="padding:$stylevar[formspacer]px">
$post[thumbnailattachments]
</div>
</if>

<if condition="$show['imageattachment']">
<div style="padding:$stylevar[formspacer]px">
$post[imageattachments]
</div>
</if>

<if condition="$show['imageattachmentlink']">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[imageattachmentlinks]
</table>
</if>
<if condition="$show['otherattachment']">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[otherattachments]
</table>
</if>
<if condition="$show['moderatedattachment']">

<strong>$vbphrase[attachments_pending_approval]</strong>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[moderatedattachments]
</table>
</if>
</if>
Demo: Maybe NSFW site (http://exposedforums.com/forums/showthread.php?p=135229#post135229) post is work safe!

Hornstar
01-10-2007, 09:10 AM
That looks cool, will try it on my site later. nice work.

DPSR
01-10-2007, 10:48 AM
Looks verynice, i will surely try it out

Thanks ntfu2 :)

DPSR
01-10-2007, 10:58 AM
Installed but i am getting OPTIONS section and also not 'add to rep' option also ?!?

edit:
NP did it myself..thanks :)

Tom_S
03-14-2007, 03:43 PM
So does this work or not?

Atakan KOC
03-26-2007, 10:55 AM
Thanks.........

Stagehandspace
08-17-2008, 05:57 PM
Works with postbit but got no options bit only downloads