PDA

View Full Version : New Posting Features - Show attachments to members only


wolfstream
07-25-2009, 10:00 PM
Now, I know that vb will stop unregistered users from downloading attachments, but here's another quick way to get the attachment itself SHOWN to members only, while letting guests know they're missing something.

replace postbit_attachment (yeah, all of it) with:

<tr>
<if condition="$show['member']">

<td><img class="inlineimg" src="$stylevar[imgdir_attach]/$attachment[attachmentextension].gif" alt="<phrase 1="$attachment[attachmentextension]">$vbphrase[file_type_x]</phrase>" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
<td><a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]"<if condition="$show['newwindow']"> target="_blank"</if>>$attachment[filename]</a> ($attachment[filesize]<if condition="$show['views']">, <phrase 1="$attachment[counter]">$vbphrase[x_views]</phrase></if>)</td>

<else />
<td> This post has an attachment which you could see if you were <a href="/register.php">registered</a>. Registering is quick and easy</td>
</if>
</tr>


This will let guests know they're missing something, not give them a preview, and tell them how to get it. It really is incredibly easy to do, just like my 3.7 version ;)

Charlie98902
07-27-2009, 02:17 AM
I have your 3.7 version installed with no issues, are they the same?

https://vborg.vbsupport.ru/showthread.php?t=199690

wolfstream
07-27-2009, 02:49 AM
Yeah, they're pretty much the same. I just added an update to let people know it was 3.8.x capable.

Charlie98902
07-27-2009, 03:10 AM
Thanks for the info. Running 3.8.3 vbulletin and the 3.7 version of this mod.

BigDog56
07-27-2009, 03:37 AM
Very nice, thank you!

dothanhtrung
07-27-2009, 05:29 AM
Thank you much, but each file to attach, it has a line of reporting. can you edit it.

wolfstream
07-27-2009, 05:54 AM
Thank you much, but each file to attach, it has a line of reporting
That's exactly what it's supposed to do, report on every attachment.

dengbej
07-27-2009, 10:59 AM
thanks

japaro
08-04-2009, 06:25 AM
Modified adding language select mode


<tr>
<if condition="$show['member']">
<td><img class="inlineimg" src="$stylevar[imgdir_attach]/$attachment[attachmentextension].gif" alt="<phrase 1="$attachment[attachmentextension]">$vbphrase[file_type_x]</phrase>" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
<td><a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]"<if condition="$show['newwindow']"> target="_blank"</if>>$attachment[filename]</a> ($attachment[filesize]<if condition="$show['views']">, <phrase 1="$attachment[counter]">$vbphrase[x_views]</phrase></if>)</td>
<else />
<td>$vbphrase[attachment_download_members]</td>
</if>
</tr>


replaced <td>This post has an attachment which you could see if you were <a href="/register.php">registered</a>. Registering is quick and easy</td>

with

$vbphrase[attachment_download_members]

added attachment_download_members to language phrase with the above text

see sample http://info.japaro.net

Marek58
08-05-2009, 05:13 AM
Polish version (wersja polska):

<tr>
<if condition="$show['member']">

<td><img class="inlineimg" src="$stylevar[imgdir_attach]/$attachment[attachmentextension].gif" alt="<phrase 1="$attachment[attachmentextension]">$vbphrase[file_type_x]</phrase>" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
<td><a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]"<if condition="$show['newwindow']"> target="_blank"</if>>$attachment[filename]</a> ($attachment[filesize]<if condition="$show['views']">, <phrase 1="$attachment[counter]">$vbphrase[x_views]</phrase></if>)</td>

<else />
<td> Post ten zawiera załącznik kt?ry będzie widoczny po <a href="/register.php">zarejestrowaniu</a>. Proces rejestracji jest szybki i łatwy.</td>
</if>
</tr>

Charlie98902
12-25-2009, 11:41 PM
Can you please update this to vbulletin 4 please? Thank