Quote:
Originally Posted by Disasterpiece
Yeah, this is the wrong one. you need to tell the template that it should only display the html tags if the steam id is not empty. You can do this like this:
HTML Code:
{vb:raw template_hook.postbit_userinfo_right}
{vb:if condition="!empty($post['steamid'])"}
<div class="steamprofile" title="{vb:raw post.steamid}"></div>
{/vb:if}
<div class="imlinks">
{vb:raw post.icqicon} {vb:raw post.aimicon} {vb:raw post.msnicon} {vb:raw post.yahooicon} {vb:raw post.skypeicon}
</div>
Not tested, but should work.
|
When I try that, it gives me the following error:
Quote:
The following error occurred when attempting to evaluate this template:
Could not find phrase 'no_true_expression_specified'.
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.
|
And if I force it to accept, it gives me this on the page:
Quote:
Parse error: syntax error, unexpected '=' in /home/stoic/stoicstudio.com/forum/includes/class_core.php(4627) : eval()'d code on line 158
|
And while writing this up, I figured out the problem. I just needed to change:
Quote:
{vb:if condition="!empty($post['steamid'])"}
<div class="steamprofile" title="{vb:raw post.steamid}"></div>
{/vb:if}
|
To:
Quote:
<vb:if condition="!empty($post['steamid'])">
<div class="steamprofile" title="{vb:raw post.steamid}"></div>
</vb:if>
|
Basically just had to wrap it in <>, not {}. Works great now! Thanks for your help!