0
Rather than pay a commission on sales/conversions, we want to pay a flat amount for each visitor referred to the site. Can this be done and how?
Responses (6)
-
Accepted Answer
-
Accepted Answer
0I think your post actually lead me to this post which has me modifying the code.
If I understand it correctly, I need to add this:
$conversion_data = array(
"name" => "Clik on link",
"component" => "com_affiliatetracker",
"extended_name" => "Account ID: " . $data['atid'],
"type" => 1,
"value" => 1 ,
"reference_id" => $data['atid'],
"approved" => 1,
);
require_once(JPATH_SITE.DIRECTORY_SEPARATOR.'components'.DIRECTORY_SEPARATOR.'com_affiliatetracker'.DIRECTORY_SEPARATOR.'helpers'.DIRECTORY_SEPARATOR.'helpers.php');
AffiliateHelper::create_conversion($conversion_data, false);
after this:
if (!$row->store()) {
$mainframe->enqueueMessage($db->getErrorMsg());
return false;
}
on this file: /plugins/system/affiliate_tracker/affiliate_tracker.php
at the function saveLog($data), around line 108.
Is that correct?
Can I create an override in the template html file so it doesn't get overridden with updates?
If so, what would the path be?
/plugins/system/affiliate_tracker/affiliate_tracker.php ??-
Germinal Campsmore than a month agohello,
yes, you can use something like that.
There's no template override path for this, as it is a plugin, not a component view...
-
-
Accepted Answer
-
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 »