E-junkie Ecommerce Forums » E-junkie Discussions
Tag Cloud for this topic:
affiliate
banner
buy
buys
clicked
code
commission
cookie
correct
customer
day
days
display
download
entered
frame
free
javascript
language
lines
link
note
occurred
page
paying
product
products
programs
renders
replaced
run
sale
script
send
src
template
text
thank-you-page
tracking
transaction
transactions
type
var
variable
| |
| |
|
GuestUser member Posts: 808 |
I'm currently with clixgalore. If the sale is not made on the day, but the customer comes back and buys within 90 days (or however long my cookie is set for) the affiliate gets commission. I thought that's how all affiliate programs work. Let's say the customer had clicked on a banner which had a ninety day cookie. Then I happen to send them a free link to a product. They are still going to the same download page. Wouldn't the code on the download page then link with the ninety day cookie and make it look like a sale has occurred? So I'm worried about paying commission on products I give for free. # POSTED ON: February 11, 2008 @ 02:07 GMT -7 |
|
E-JunkieExpert member Posts: 804 |
That is correct, the affiliate gets the commission if the customer comes back and buy within the time frame the cookie is set for. Well, E-junkie will display the JavaScript tracking code that you have entered on the thank you page. To avoid that, you can use a JavaScript condition around the JavaScript code (apart from includes) to not run the code in case it's a free transaction. Our free transactions start with "j". So, if the code that they have give you to place in the thank you page is: <script type="text/javascript" src="http://somedomain/somefile.js"></script> <script language="javascript" type="text/javascript"> - lines of code - </script> then, your code will become <script type="text/javascript" src="http://somedomain/somefile.js"></script> <script language="javascript" type="text/javascript"> var txn_id; txn_id='[%txn_id%]'; if (txn_id.substring(0,1)!="j") { - lines of code - } </script> Please note, [%txn_id%] is an E-junkie template variable which will be replaced by actual transaction ID when E-junkie renders the thank you page. # POSTED ON: February 11, 2008 @ 02:13 GMT -7 |
You must be logged in to make a post. Please click here to login. | |






