The Arcive of vBulletin Modifications Site. |
|
[vB4.X.X] Hide Last Post Date & Time For Guests Details »»
|
|||||||||||||||||||||||||||||||||||
|
[vB4.X.X] Hide Last Post Date & Time For Guests
Developer Last Online: Nov 2023
This modification hide the Last post date and time on FORUMHOME and FORUMDISPLAY...See the screenshot for example
![]() ================================================== =========================================== And here we go: ------------------------------------------------------------------------------------------------------------------ Open the forumhome_lastpostby template and find: Code:
<p class="lastpostdate">{vb:raw lastpostinfo.lastpostdate}<vb:if condition="!$show['detailedtime']">, <span class="time">{vb:raw lastpostinfo.lastposttime}</span></vb:if></p>
<vb:else />
<span class="lastpostdate">{vb:raw lastpostinfo.lastpostdate} <vb:if condition="!$show['detailedtime']"><span class="time">{vb:raw lastpostinfo.lastposttime}</span></vb:if></span>
Code:
<vb:if condition="$show['guest']">
<vb:else />
<p class="lastpostdate">{vb:raw lastpostinfo.lastpostdate}<vb:if condition="!$show['detailedtime']">, <span class="time">{vb:raw lastpostinfo.lastposttime}</span></vb:if></p>
</vb:if>
<vb:else />
<vb:if condition="$show['guest']">
<vb:else />
<span class="lastpostdate">{vb:raw lastpostinfo.lastpostdate} <vb:if condition="!$show['detailedtime']"><span class="time">{vb:raw lastpostinfo.lastposttime}</span></vb:if></span>
</vb:if>
------------------------------------------------------------------------------------------------------------------ Open the threadbit template and find: Code:
<dd>{vb:raw memberaction_dropdown}
<dd>{vb:raw thread.lastpostdate} <em class="time">{vb:raw thread.lastposttime}</em>
Code:
<dd>{vb:raw memberaction_dropdown}<vb:if condition="$show['guest']">
<vb:else />
<dd>{vb:raw thread.lastpostdate} <em class="time">{vb:raw thread.lastposttime}</em>
</vb:if>
------------------------------------------------------------------------------------------------------------------ ================================================== ========================================= If you installed this hack please Click "Mark as Installed" Enjoy! ![]() Screenshots
Show Your Support
|
|||||||||||||||||||||||||||||||||||
![]() |
|
|