If there a way to charge a fee by percentage...

More
12 years 10 months ago #28713 by Rick
I have tried several ways to add a fee by percent and it changes nothing. I want to charge a fee for anyone registering and paying with Paypal...is there a way to do this. My fee is 3%.

Please Log in or Create an account to join the conversation.

More
12 years 10 months ago #28774 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: If there a way to charge a fee by percentage...
Actually, there is no way for doing that without hacking the code of the extension. Try the solution below :

1. Open the file components/com_eventbooking/payments/os_paypal.php

2. Find the code below :
Code:
$this->setParam('amount', round($data['amount'], 2));

3. Change it to :
Code:
$this->setParam('amount', round($data['amount']*1.03, 2));

After that, it will work as expected.

Tuan

Please Log in or Create an account to join the conversation.

Moderators: Tuan Pham Ngoc