Quote:
Originally Posted by RomainVL
Finally it works perfectly, I only had to put avatars/usernames/age/... to the left :
Admin CP > vBulletin Options > Style & Language Settings; and set the "Use Legacy (Vertical) Postbit Template" to Yes (and save)
And now you only have to pute the code at the correct place in the postbit_legacy, otherwise it will show up under the cadre.
So find this line :
Code:
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
and add the flag code after
Code:
<!-- / flags start -->
<div>
<if condition="$post[field11]"><img src="images/flags/$post[field11].GIF"></if>
</div>
<!-- / flags end -->
and you're done. 
|
Thanks a MILLION !!
I found this elsewhere and could not get it to work. ( You solved it ! )
Here's what I did though.
FIND:
Code:
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
IN LINE AFTER :
Code:
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]
ADD :
Code:
<br><!-- / flags start -->
<div>
<if condition="$post[field7]"><img src="images/flags/$post[field7].GIF"></if>
</div>
<!-- / flags end --></br></div></if>
This way your location and flag are in the same box ( per-say )
Thanks again,
EDIT : If you do the above you have to remove the extra </if> and </div> tags at the end..............lol
Just find :
Code:
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
Replace with :
Code:
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]<br><!-- / flags start -->
<div>
<if condition="$post[field7]"><img src="images/flags/$post[field7].GIF"></if>
</div>
<!-- / flags end --></br></div></if>
What-ever, you get the idea.............
Hope this helps someone.