Quote:
Originally Posted by acast
Hi, i want to do one thing and i hope you can help me. I want that when i buy something in the ishop appears in the member profile, but in postbit i want a miniature. For example, if i buy a present called apple in ishop/items/apple.gif in the postbit appears the miniature in ishop/itemsmini/apple.gif and in the member profile the big picture as like it appears.
Can anybody help me with this "if"?
Regards friends.
|
Can anybody help me, please? There is a template of the ishop_invpostbit_item where i put the two directories of the presents to buy in the ishop:
Code:
<img src='ishop/items/{$item['img']}' alt='{$item['name']}' border='0'>
<img src='ishop/itemsmini/{$item['img']}' alt='{$item['name']}' border='0'>
This is the standard code of ishop that i have to put in postbit and in the memberinfo template:
POsbit:
Code:
Find
----
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
Add AFTER
---------
<!-- show inventory -->
<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:
Code:
Find
----
<if condition="$vboptions['usereferrer']">
Add BEFORE
----------
<!-- 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>
The two images appears in postbit and in memberprofile. Can anybody help me to make a correct if?