0
Hello Germinal,
I've installed Affiliate Tracker and noticed a strange behaviour with commission.
During each sale my default user (?atid=1 that refers to 1st Joomla user who is Super Administrator) "earn" commission. But in fact there is no affiliate link used (no mydomain.com?atid=1 URL is used).
I don't need default user to get commission without affiliate link.
Is there any way to disable this feature or it is an issue related to integration plugin?
Thank you.
I've installed Affiliate Tracker and noticed a strange behaviour with commission.
During each sale my default user (?atid=1 that refers to 1st Joomla user who is Super Administrator) "earn" commission. But in fact there is no affiliate link used (no mydomain.com?atid=1 URL is used).
I don't need default user to get commission without affiliate link.
Is there any way to disable this feature or it is an issue related to integration plugin?
Thank you.
Responses (7)
-
Accepted Answer
-
Accepted Answer
0It's not testing. This is how it works on live site. Real customers buy products on site, no affiliate link is used at all, but first user (account in Affiliate Tracker) get commission from each sale. Thereby, the browser cache has nothing to do with this issue since there are different users who buy the products.
Can integration plugin handle this process or it's issue related to the component? -
Accepted Answer
-
Accepted Answer
0I've used version 2.0.6. I just been updated to 2.1.2. But I am not sure it will help. Is there any changelog?
Btw, a few days ago I've disabled first account, but this user still get commission from new sales. A few hours ago new sale were made and this disabled user got commission (see screenshot). It's very strange. -
Accepted Answer
-
Accepted Answer
0Unfortunately, I cannot provide credentials on live site. I shall create dev site and test the component there.
Btw, we use custom integration plugin to RD Subscriptions extension (similar to Akeeba Subscriptions). The only thing the plugin is doing is this:
// Prepare conversion array
$conversion_data = array(
"name" => 'RD-Subscriptions',
"component" => 'com_rdsubs',
"extended_name" => 'Order: ' . $ordercode,
"type" => 1,
"value" => (float) $amount->grossprice(),
"reference_id" => $ordercode,
"approved" => 1,
"atid" => 1
);
// Create a conversion item in Affiliate Tracker.
AffiliateHelper::create_conversion($conversion_data, $data['userid']);
This is written according to your documentation (https://www.joomlathat.com/affiliate-tracker/custom-tracking-api)
And this is all that the plugin needs to do as we could read from there. I just adding this information just in case. -
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 »