- Posts: 12
- Thank you received: 0
If there a way to charge a fee by percentage...
- Rick
- Topic Author
- Offline
- New Member
-
Less
More
12 years 10 months ago #28713
by Rick
If there a way to charge a fee by percentage... was created 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.
- Tuan Pham Ngoc
- Offline
- Administrator
-
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 :
3. Change it to :
After that, it will work as expected.
Tuan
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
Support
Documentation
Information
Copyright © 2026 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.