Can you provide a link to your site?
Printable View
I have this mod installed on v1.3.9g however, I do have a problem with some of the entries. If you have more than 50 entries and a second page of referrers, you have to change the last name of the people to actually click on them to change their info.
This way, they will jump to the first page, change their info and then change their last name again.
Also, there's no way to delete an entry if someone doesn't "qualify" and there is no way to take $ away if an order was canceled.
So two problems...
1) With the admin panel I'm guessing revolving around the listing? I haven't used it beyond 50 myself.
2) Regarding deleting affiliate transactions: This has troubled me a bit. I don't know if I should include a DELETE option or an EXCLUDE option. I would like to go ahead and make a change that would allow a person to select which orders to pay for.
Great mod! Thanks! :hug:
Are there any plans to add a kind of hit counter on the referreral account page to track the number of hits the referrer is sending?
Thanks again!
Great Mod! Istructions a little vague but it is easy enough to figure out for someone who has experience applying mods!
Thank you! This was relatively effortless. :clap:
I added the affiliate mod to www.heartsathomestore.com!
Turns out I forgot to include the instructions on how to do this... that or I forgot where did I include it.
Many people here, hopefully everyone unless you're local testing, changed their ZenCart Admin directory. Since there is no way to call the admin directory via a constant, when coding you have to make a little work around.
When a new affiliate submits their information, you will get a link to "log in to the affiliate control panel" that will take you to the /admin directory. Obviously, this is not correct.
To fix this, follow the following steps:
- Open root/includes/modules/pages/referrer_signup/header_php.php where root is the root directory of the ZenCart install.
- Go to line 62 and/or look for:
- In line change the admin/ to match the name of the directory where your admin is. For example, if your directory was mxyzptlk you would change the above to:PHP Code:
HTTP_SERVER . DIR_WS_CATALOG . "admin/referrers.php?referrer=" . $_SESSION['customer_id']. "&mode=details";
Reupload and from that point forward, affiliate apps will have the correct link.PHP Code:
HTTP_SERVER . DIR_WS_CATALOG . "mxyzptlk/referrers.php?referrer=" . $_SESSION['customer_id']. "&mode=details";