Quote:
Originally Posted by mcgra
Hi Hippy,
Thanks for all the hard work here, this works like a charm on my board except with the formatting on our two main skins, ive tried the various fixes but they have not worked, is there an easy way for the customs skins formatting to apply to the thanks section in the postbit?
The skins in question are from completevb.com aesthetica blue and twisteddark blue, none of the suggested post_thanks_postbit_info changes are having any effect on these two skins.
Apologies if the solution is obvious I am not a coder!
|
replace your post_thanks_postbit_info template with
Code:
<vb:if condition="$post['userid']">
<div class="post_field"><dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd></div>
<vb:if condition="$post['post_thanks_thanked_times'] == 1">
{vb:rawphrase post_thanks_time_post}
<vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}
<vb:else /><br />
<div class="post_field"style="white-space:nowrap; display:inline;">{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</div><br />
</vb:if>
</vb:if>