0
I want to pay a 40% commission on a purchase but do not want to include the shipping in the total cost. How do I break that out so I only pay 40% on the price of the product?
Responses (9)
-
Accepted Answer
0Hello,
Affiliate Tracker calculates the commission taking into account the total amount of the transaction.
In order to do what you want, a little bit of custom coding would be needed.
However, if the shipping value is always the same, you can adjust the percentage in order to not take it into account.
Thank you,
Joan -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0In this case you only need to modify a line of code.
If you open the file /plugins/k2store/affiliatetracker/affiliatetracker.php
In line 62, you should have:
"value" => (float)$order->order_total ,
So, you should replace this line with this one:
"value" => (float)$order->order_subtotal ,
If you don't feel comfortable doing this, you can send me ftp access to joan@ joomlathat.com and I will do it for you.
Thank you,
Joan-
drs2bizmore than a month agoThanks... works fine now!
-
-
Accepted Answer
-
Accepted Answer
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »