im upgrading my vB to 4.1.8 (from 4.1.4) to look at the database/code changes. will get back to you if no one else does.
--------------- Added [DATE]1322765908[/DATE] at [TIME]1322765908[/TIME] ---------------
i used the following code and it works just fine
FIND
Code:
<vb:if condition="$show['reputation']">
<span class="postbit_reputation" id="repdisplay_{vb:raw post.postid}_{vb:raw post.userid}" title="{vb:raw post.username} {vb:raw post.level}">
<vb:each from="reputationdisplay" value="row">
<img class="{vb:raw row.class}" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw row.posneg}{vb:raw row.imgext}" alt="" />{vb:raw row.rowend}
</vb:each>
</span>
</vb:if>
REPLACE WITH
Code:
<vb:if condition="$show['reputation']">
<span>
Reputation: {vb:raw post.reputation}
</span>
</vb:if>
--------------- Added [DATE]1322765941[/DATE] at [TIME]1322765941[/TIME] ---------------
feel free to style it as needed.