Yves Hoppe wrote: Hi Dirk,
just took a look at the code again, in the backend the fee calculation line is missing. This will be fixed with the next version.
If you are in are in a hurry you could easily fix it yourself by editing administrator/components/com_matukio/controllers/bookings.php after line 258 you have to add the following code:
if (!empty($event->fees)) {
$neu->payment_method = $payment_method;
if($nrbooked > 0)
$neu->payment_brutto = $event->fees * $nrbooked;
else
$neu->payment_brutto = $event->fees;
}
Best regards,
Yves
I changed the code according to the recommendation to:
if (!empty($event->fees)) {
$neu->payment_method = $payment_method;
if($nrbooked > 0)
$neu->payment_brutto = $event->fees * $nrbooked;
else
$neu->payment_brutto = $event->fees;
}
But still get price = 0 in the confirmation mail. What did I do wrong? Thanks!
Gebühren: € 0.00