Dodałem na swoim forum(vbulletin 3.8.4) opcję "lubię to", która w praktyce jest imitacją propsów z tm. Dodałem do każdego posta licznik polubień, ale nie bardzo wiem co zrobić, by po kliknięciu na "lubię to!" licznik pojawił się od razu - bez odświeżania strony.
Kod jest prosty i paskudnie brzydki:
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img src="$stylevar[imgdir_button]/fblike.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
<if condition="$post['rsum'] > 0">
<TABLE id="rep_test" BORDER="0" cellpadding="0" CELLSPACING="0">
<TR>
<TD WIDTH="22px" HEIGHT="20px" VALIGN="bottom" title="$vbphrase[reputation]">
<font color='white'><B>$post[rsum]</B></font>
</TD>
</TR>
</TABLE>
</if>
<if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if>
</if>