[REQ] Need this Code please~

Code:
img src='ishop/items/{$item['img']}' alt='{$item['name']}' border='0'>
<img src='ishop/itemsmini/{$item['img']}' alt='{$item['name']}' border='0'>

Posbit:
Find:
Code:
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>

Add AFTER:
<!-- show inventory -->
Code:
<fieldset><legend><a href="ishop.php?do=ViewMember&id=$post[userid]" title="$post[username]'s Inventory">$post[username]'s Inventory</a></legend>
<div>
$post[invrow]
<br>
</div>
</fieldset>
<!-- /show inventory -->

Memberinfo:
Find:
Code:
<if condition="$vboptions['usereferrer']">

Add BEFORE:
Code:
<!-- show inventory -->
<fieldset><legend><a href="ishop.php?do=ViewMember&id=$userinfo[userid]" title="$userinfo[username]'s Inventory">$post[username]'s Inventory</a></legend>
<div>
$userinfo[invrow]
<br>
</div>
</fieldset>
<!-- /show inventory -->

I want an if that makes in the postbit i can see only the images located in itemsmini. I tried this one, but it doesnt work:
Code:
<if condition="$post[invrow] != ''"><div>
   <img src='ishop/itemsmini/{$item['img']}' alt='{$item['name']}' title="$post[invrow]" align="left">
</div></if>
 
Back
Top