I know a website which provide me some service.
I get an increasing discount if I refer people to buy this service form that site.
The site doesn’t has an already made affiliates system
I communicate with the site,
and got this reply from them:
Unfortunately, at the moment, we do not have any kind of affiliate
link and ID scheme in operation, however we would be keen to explore
setting one up. Could you clarify what you mean exactly? Would you
want your own email address? And you would put our site on your own
website so that we can track your booking?We are keen to work with you so just let us know what would be
required!
How can I establish a quick affiliate system (for me only, not generic scale-able one) ?
tracking pixel?
cookie?
I’m new to all of this
You could do something like this:
1st Option:
http://example.com/buy_this_service?ref=your-own-unique-IDlink text in the wild.$_GET["ref"]in theirservice/index.phpfile.If the
example.comcompany in question can not/ will not do anything, then you could do:2nd Option:
http://your-own-domain.com/buy-this-amazing-servicelink text.http://your-own-domain.com/buy-this-amazing-servicetohttp://example.com/serviceIn 1st case,
example.comneed to capture and process theRef IDas soon as visitor lands on their page, which should be thebuy-thispage(the one where link was pointing).So, user lands, site records that
Elad (referrer)sent this visitor. If visitor buy, they creditElad, if not, then they do nothing.From here, no matter our Ref ID stays there in the URL or not. We don’t need need it now. The instance is already recorded.
If the site is already logging IP, then you should ask them to go with 1st case. Or, in a hackish way, in 2nd option, on
your-domain.com/amazing-servicepage, capture visitor’s IP try to pass it toexample.comusingGETmethod.