Attachment display like vBulletin.org
This modification is in the archives.
This is simple, only tested in postbit_legacy template, though postbit should be similar/same
AdminCP -> style and templates -> Postbit Templates -> postbit_legacy find: Code:
<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> Code:
<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> Download
This modification is archived, downloads are still allowed. Screenshots |
Similar Mods
vBulletin Project Tools PT Display attachment size in each issue | vBulletin 3.6 Add-ons |