What are you looking to change? The first thing I did when I installed that was to get rid of the collapse button. If you're trying to clean up the info under the user's name, this is what my template looks like. I got rid of the amount of times the user thanked others, and just kept the amount of times they were thanked.
Code:
<!-- Thanks -->
<vb:if condition="$post['post_thanks_thanked_times'] == 1">
<tr><td class="legacystats">
<div align="center"><span class="legacytext">Thanked: 1</span></div>
</td></tr>
<vb:else />
<tr><td class="legacystats">
<div align="center"><span class="legacytext">Thanked: {vb:raw post.post_thanks_thanked_times}</span></div>
</td></tr>
</vb:if>
<!-- /Thanks -->
My postbit looks like the attached.