Quote:
Originally Posted by vnairp11
I had that issue too after adding
Quote:
<if condition="!empty($post[mood])">
<div>
$vbphrase[my_mood]: <img src="images/mood/$post[mood].gif" border="0" />
</div>
</if>
|
to the postbit template according to the readme instructions it solved the issue 
|
I did the manual edits, but that is not compliant with vbadvanced. to be compliant with vbadvanced it needs to be:
Quote:
<if condition="!empty($post[mood])">
<div>
$vbphrase[my_mood]: <img src="$vboptions[bburl]/images/mood/$post[mood].gif" border="0" />
</div>
</if>
|
however, that fix still does not fix the issue regarding this hack looking for the ajax.php outside the forum directory - that needs to be fixed in the plugin. If you don't believe me try looking at your server's error log - I bet you will see a lot of errors there about the ajax.php not being found (while using this hack)