change the ammount of credit
- electra
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
16 years 2 weeks ago #3447
by electra
Hi,
simple question using vodes: it's possible to change the number of credits associated with ammount? I need credits multiple of 25 or using 1 credit for 25 euro.
Where I have to add this data?
Thanks.
simple question using vodes: it's possible to change the number of credits associated with ammount? I need credits multiple of 25 or using 1 credit for 25 euro.
Where I have to add this data?
Thanks.
Please Log in or Create an account to join the conversation.
- rakib
- Offline
- New Member
Less
More
- Thank you received: 0
16 years 1 week ago #3491
by rakib
Did you mean 25 EURO = 1 credit(vode) ? If so then you may change vodes.html.php files by following
and also have to changein vodes.php.
Hope this may help
<select name="amount">
<option value="25.00">25 € (1 <?php echo _VODE_VODES; ?>)</option>
<option value="50.00">50 € (2 <?php echo _VODE_VODES; ?>)</option>
<option value="75.00">75 € (3 <?php echo _VODE_VODES; ?>)</option>
<option value="100.00">100 € (4 <?php echo _VODE_VODES; ?>)</option>
</select>
$credit = ceil($payment_amount/25);
Hope this may help
Please Log in or Create an account to join the conversation.