Author Topic: change the ammount of credit  (Read 3473 times)

electra

  • Newbie
  • *
  • Posts: 1
    • View Profile
change the ammount of credit
« on: 06 November 2008, 19:38 »
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.

rakib

  • Newbie
  • *
  • Posts: 23
    • View Profile
Re: change the ammount of credit
« Reply #1 on: 16 November 2008, 18:27 »
Did you mean 25 EURO = 1 credit(vode) ? If so then you may change vodes.html.php files by following

Code: [Select]
<select name="amount">
<option value="25.00">25 &#8364; (1 <?php echo _VODE_VODES?>)</option>
<option value="50.00">50 &#8364; (2 <?php echo _VODE_VODES?>)</option>
<option value="75.00">75 &#8364; (3 <?php echo _VODE_VODES?>)</option>
<option value="100.00">100 &#8364; (4 <?php echo _VODE_VODES?>)</option>
</select>
and also have to change
Code: [Select]
$credit = ceil($payment_amount/25);
in vodes.php.
Hope this may help