Quote:
Originally Posted by Collussus
installed this on 3.7.x with minor problems.. Found the bugs pretty quickly..
All you have to do is find this in the ishop_cat_row template :
Code:
<tr>
<td class='alt2' align='center'><b><a href='?showshop={$cat['cid']}'>{$cat['cname']}</a></b></td>
<td class='alt2' align='center'>{$cat['citems']}</td>
</tr>
and replace it with :
Code:
<tr>
<td class='alt2' align='center'><b><a href='ishop.php?showshop={$cat['cid']}'>{$cat['cname']}</a></b></td>
<td class='alt2' align='center'>{$cat['citems']}</td>
</tr>
Then you go into the ishop.php file and find this:
Code:
$items['BuyLink'] = "<a href='?$session[sessionurl]do=BuyItem&id={$items['id']}'>Buy</a>";
and change it to this:
Code:
$items['BuyLink'] = "<a href='ishop.php?$session[sessionurl]do=BuyItem&id={$items['id']}'>Buy</a>";
|
What bug is this anyway :-?
@deezelpope : lolz me too , but It would be good to make it more easier , like the uploading smiles option of VBB ^^