Re: Affiliates and Customers
I don't think it's that easy. Well, technically it is, but i'm not sure that "the last affiliate always gets the commission" behavior is always correct either. Imagine a situation like this: you (as an affiliate) work hard to promote some site and drive customers to it. You managed to get someone to...
Jump to post- Wed Oct 24, 2012 11:45 pm
- Replies 4
- Views 894
Re: Affiliate program signup - customers must create account
Made a module for that : Merge Customer and Affiliate Accounts
Jump to post- Wed Oct 24, 2012 11:00 pm
- Replies 7
- Views 1392
[UPDATED] Advanced Multi Tier Affiliate System
Extends openCart's basic affiliate functionality and allows you to have feature-reach affiliate system with variety of setting and possibilities. Advanced Multi Tier Affiliate System Features include: - percentage-based or fixed amount commission. - individual commissions can be defined not only for...
Jump to post- Mon Oct 22, 2012 4:24 am
- Replies 0
- Views 577
Re: Show affiliate name/info in header.tpl
Another question that's sort of related. I'm testing a few different affiliates, but the first one I put in is the only one associating with orders. How can I get it to change affiliates? Not 100% sure what you mean, but i feel it's related to the discussion here . While testing you might just try ...
Jump to post- Sat Oct 20, 2012 2:59 am
- Replies 5
- Views 746
Re: Show affiliate name/info in header.tpl
In controller: $this->load->model('affiliate/affiliate'); if(isset($this->request->cookie['tracking'])) { $affiliate_info = $this->model_affiliate_affiliate->getAffiliateByCode($this->request->cookie['tracking']); //now you can use whatever fields you want, e.g.: //firstname, lastname, email, teleph...
Jump to post- Thu Oct 18, 2012 3:44 am
- Replies 5
- Views 746
Re: affiliate geen commisie geven over verzendkosten
With my extension you can set commissions to be calculated before shipping / taxes / etc.
Jump to post- Thu Oct 18, 2012 12:39 am
- Replies 3
- Views 797
Re: Problema afiliati
Open your /home/casatool/public_html/catalog/language/romana/affiliate/login.php and make sure that there are no spaces or tab or newline characters after closing ?> at the end of the file. Or just delete ?> from the file. If that doesn't help, post content of your /home/casatool/public_html/catalog...
Jump to post- Mon Oct 15, 2012 7:20 pm
- Replies 2
- Views 796
Re: Advanced Multi Tier Affiliate System (vQmod)
The problem must have been with custom language files. This was fixed in more recent versions.
Jump to post- Thu Oct 11, 2012 7:11 am
- Replies 36
- Views 9113
Re: Affiliate priority of cookies
Maybe it's not correct behavior, that is arguable, however this is how it works. Look at the code you've posted yourself if (isset($request->get['tracking']) && !isset($request->cookie['tracking'])) { setcookie('tracking', $request->get['tracking'], time() + 3600 * 24 * 1000, '/'); } It basically tr...
Jump to post- Sat Oct 06, 2012 9:42 pm
- Replies 12
- Views 3262
Re: AFFILIATE PRIORITY OF COOKIES
interesting as during testing it looks as though if a customer clicks through from affiliate 1's link and makes a purchase THEN after loggin out and clicks through from affilate 2 link and makes a second purchase in another session affiliate 1 gets the commission in our opencart shop This is true, ...
Jump to post- Sat Oct 06, 2012 7:41 pm
- Replies 12
- Views 3262
Re: Affiliate Program
This free extension is meant to do that.
Jump to post- Sat Oct 06, 2012 6:54 pm
- Replies 3
- Views 1834
Re: Remove freight from affiliate payment part
You can do that with this extension . Jump to postprchakal wrote: How i can make the affiliate dont pay for order total field with freight, but the total without freight?
- Sat Oct 06, 2012 6:41 pm
- Replies 2
- Views 259
Re: Sales Reps Process Orders on Behalf of Customers
You can probably achieve this by giving them admin User accounts with certain permissions.
Jump to post- Sun Apr 15, 2012 11:01 pm
- Replies 1
- Views 325
Re: Creating affiliate cookie outside opencart
It's php, you can't see it in the page source.
Jump to post- Thu Apr 12, 2012 7:54 pm
- Replies 7
- Views 1787
Re: Affilliate tracking on sub domain
Unless you set up its' own simple affiliate tracking system on your information site, which would either set the cookie or propagate tracking code to the links pointing to your shop, affiliate tracking code will be lost and openCart's affiliate system will not be triggered at all.
Jump to post- Wed Mar 28, 2012 7:11 pm
- Replies 1
- Views 209
Advanced Multi Tier Affiliate System (vQmod / ocmod)
This extension expands openCart's basic affiliate-related functionality and allows you to construct and run full-featured affiliate programs with variety of setting and possibilities. Advanced Multi Tier Affiliate System Features: - ability to create and use unlimited number of affiliate schemes, ea...
Jump to post- Fri Mar 23, 2012 2:14 pm
- Replies 36
- Views 9113
Re: Redirecting Affiliate program
You can go to catalog/view/theme/default/template/affiliate and in the end of each .tpl file, right above <?php echo $footer; ?>, put something like this: <script language="javascript"> document.location.href = document.location.href.replace(/\?.*$/, ''); </script> That should make every affiliate-r...
Jump to post- Fri Mar 23, 2012 1:25 am
- Replies 1
- Views 623
Re: Affiliate lifetime commision - is it possible?
When someone enters openCart site via the link with tracking code in it, openCart sets a cookie in visitor's browser for 1000 days. Therefore you don't need to do anything, it should just work like you described, at least until the user removes cookies.
Jump to post- Thu Mar 22, 2012 5:21 am
- Replies 1
- Views 653
Re: Creating affiliate cookie outside opencart
Add ?tracking=<code> (or &tracking=<code> if the URL already contains ? ) to the page's URL, and the page itself should contain following PHP code:
Code: Select all
if (isset($_REQUEST['tracking']) && !isset($_COOKIE['tracking'])) setcookie('tracking', $_REQUEST['tracking'], time() + 3600 * 24 * 1000, '/');
- Tue Mar 13, 2012 5:47 am
- Replies 7
- Views 1787