Hi epvp :D
Today i want release mini update for my Premium system for Hen! cms.
What it's is?
Button ,,Buy" for buy premium from ItemShop show when ,, your coins >= price"
Screen:
[Only registered and activated users can see links. Click Here To Register...]
How to?
Step 1: Open you'r bonus.php in pages folder.
Step 2: Find:
Step 3: Replace With:
Step 4: Find:
Step: 5: Replace with:
etc,etc,etc.. :)
that's all :)
Sorry for my bad english.
Today i want release mini update for my Premium system for Hen! cms.
What it's is?
Button ,,Buy" for buy premium from ItemShop show when ,, your coins >= price"
Screen:
[Only registered and activated users can see links. Click Here To Register...]
How to?
Step 1: Open you'r bonus.php in pages folder.
Step 2: Find:
PHP Code:
<tr>
<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=1">Buy</a></td>
</tr>
PHP Code:
<tr>
<?php
if($_SESSION['user_coins'] >= $serverSettings['1'])
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=1">Buy</a></td>';
}
else
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=spenden">Buy Coins</a></td>';
}
?>
</tr>
PHP Code:
<tr>
<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=2">Buy</a></td>
</tr>
PHP Code:
<tr>
<?php
if($_SESSION['user_coins'] >= $serverSettings['2'])
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=2">Buy</a></td>';
}
else
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=spenden">Buy Coins</a></td>';
}
?>
</tr>
that's all :)
Sorry for my bad english.