Quote:
Originally Posted by eternal_
Is there any way to make this so it's in the avatar column instead of at the end of each post the person makes?
|
Search in (
Postbit or
Postbit_legacy) Template for:
Code:
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" title="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
</a>
</vb:if>
Add below it:
If you want to show how many followers She/He has add this:
Code:
<vb:if condition="$post['field5']">
<center><a href="http://twitter.com/{vb:raw post.field5}" class="twitter-follow-button">Follow @{vb:raw post.field5}</a></center>
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
</vb:if>
- Change
5 to the field number you made before "check the second screenshot in the first post"
If you doesn't want to show how many followers they have add this:
Code:
<vb:if condition="$post['field5']">
<center><a href="http://twitter.com/{vb:raw post.field5}" class="twitter-follow-button" data-show-count="false">Follow @{vb:raw post.field5}</a></center>
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
</vb:if>
- Change
5 to the field number you made before "check the second screenshot in the first post"
- Press
"Save"