I edited the usertitle for guests by editing the phrase $vbphrase['guest']; however it seems that by default in 3.5, guest usertitles do not show up?
I have made them show up by adding the following code (highlighted in red) to the postbit template:
But is this necessary, or is there some setting that handles this?
I have made them show up by adding the following code (highlighted in red) to the postbit template:
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if> [COLOR=Red]<if condition="$vbphrase['guest']"><div class="smallfont">$vbphrase[guest]</div></if>[/COLOR]
Comment