Quote:
Originally Posted by BirdOPrey5
I don't know about a mod but it's a fairly simple template edit.
Code:
<vb:if condition="$thread['postusername'] == $post['username']"> ORIGINAL POSTER</vb:if>
Replace ORIGINAL POSTER with whatever you want, text, an image, whatever.
Put that code anywhere in your postbit or postbit_legacy template.
|
thanks for this i was wondering if that was a mod.But a simple tweak:up:. I tweaked it a bit more for my forum and sharing is caring
for those that would like this simple tweak thanks to BirdOPrey
in postbit_legacy look for this line
Quote:
<div class="postdetails">
<div class="userinfo">
<div class="username_container">
<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
{vb:raw post.onlinestatus}
<!-- original poster mod by BirdOPrey5 https://vborg.vbsupport.ru/showthread.php?t=286290 -->
<span class="originalposter"><vb:if condition="$thread['postusername'] == $post['username']"> [OP]</vb:if></span>
<!-- original poster mod by BirdOPrey5 https://vborg.vbsupport.ru/showthread.php?t=286290 -->
<vb:else />
<span class="username guest">{vb:raw post.musername}</span>
</vb:if>
</div>
|
just copy what's in red and paste it after {vb:raw post.onlinestatus} then save.
in additional css put this at the bottom. change color to your liking..
Quote:
/* BirdOPrey5-original poster tweak */
.originalposter {
color: #c02525;
font-size: 14px;
font-weight: 700;
}
|
see attached image enjoy!!!
Attachment 142952