Mohammad Kamal
01-11-2013, 11:00 PM
Hello,
Add Download Button next to attachments
I posted the same thread but for vBulletin 3 here
https://vborg.vbsupport.ru/showthread.php?p=2396524
and now here is it for vBulletin 4
Screenshot:
https://vborg.vbsupport.ru/attachment.php?attachmentid=143278&stc=1&d=1358033019
To do that, open postbit_attachment template
Search for:
({vb:raw attachment.filesize}<vb:if condition="$show['views']">, {vb:rawphrase x_views, {vb:raw attachment.counter}}</vb:if>)
below it add:
<a class="downloadbutton_attachments" href="attachment.php?{vb:raw session.sessionurl}attachmentid={vb:raw attachment.attachmentid}&d={vb:raw attachment.dateline}"<vb:if condition="$show['newwindow']"> target="_blank"</vb:if>>Download</a>
then open additional.css template and add the following code:
/* ***** Download Button for attachments by Mohammad Kamal */
.downloadbutton_attachments{
color: black;
font-size: 8pt;
font-family: tahoma;
border: solid 1px;
padding: 3px;
text-decoration: none;
background-color: #DDD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
a.downloadbutton_attachments:link { color: black; }
a.downloadbutton_attachments:hover { color:red; }
You can edit the color as you like!
and that's it, Enjoy ;)
Add Download Button next to attachments
I posted the same thread but for vBulletin 3 here
https://vborg.vbsupport.ru/showthread.php?p=2396524
and now here is it for vBulletin 4
Screenshot:
https://vborg.vbsupport.ru/attachment.php?attachmentid=143278&stc=1&d=1358033019
To do that, open postbit_attachment template
Search for:
({vb:raw attachment.filesize}<vb:if condition="$show['views']">, {vb:rawphrase x_views, {vb:raw attachment.counter}}</vb:if>)
below it add:
<a class="downloadbutton_attachments" href="attachment.php?{vb:raw session.sessionurl}attachmentid={vb:raw attachment.attachmentid}&d={vb:raw attachment.dateline}"<vb:if condition="$show['newwindow']"> target="_blank"</vb:if>>Download</a>
then open additional.css template and add the following code:
/* ***** Download Button for attachments by Mohammad Kamal */
.downloadbutton_attachments{
color: black;
font-size: 8pt;
font-family: tahoma;
border: solid 1px;
padding: 3px;
text-decoration: none;
background-color: #DDD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
a.downloadbutton_attachments:link { color: black; }
a.downloadbutton_attachments:hover { color:red; }
You can edit the color as you like!
and that's it, Enjoy ;)