Hi all, we have signed up to an affiliate scheme with LinkShare who have given us a pixel to put on our receipt page
Where
I know some of the values using actinic placeholders:
But ActinicOrderTotal includes tax and shipping.. the fix is here - but the AUG says
so i don't know whether it will screw up something else in the cart?
Also, am I able to extract information for 'skulist' and 'qlist'? The clever way Google Analytics has been setup to work in Actinic suggests (y) yes, but the javascript (if that is what will power a solution) is far beyond me.
Any suggestions, clues or guesses are gratefully appreciated. TIA, 0
Code:
<img src="https://track.linksynergy.com/ep?mid=xxxx&ord=xx&skulist=xxxx &qlist=xxx&amtlist=xxxx&cur=xxx">
mid= A static numeric merchant ID constant provided to you by LinkShare.
ord= This is a unique transaction orderID composed of 1 to 40 non-blank
characters.
skulist= This is a unique product identifier. When several different products
are included in a single order, distinct SKUs should be pipedelimited
using |. The order that the SKUs are placed in must be
followed for qlist, amtlist, and namelist.
qlist= This is the quantity value. For an order with distinct items, this is a
pipe-delimited list of quantity values. The order of values in this list
must match the order of values in the skulist.
amtlist= This is the amount value in form of (price * quantity * 100). A sale
of $3.25 is output as 325. GBP example: a total sale of £3.50 is
output as 350. The amount value excludes shipping and tax. For an
order with distinct items, this is a pipe-delimited list of amount
values.
curr= This is currency, like GBP or USD.
ord= This is a unique transaction orderID composed of 1 to 40 non-blank
characters.
skulist= This is a unique product identifier. When several different products
are included in a single order, distinct SKUs should be pipedelimited
using |. The order that the SKUs are placed in must be
followed for qlist, amtlist, and namelist.
qlist= This is the quantity value. For an order with distinct items, this is a
pipe-delimited list of quantity values. The order of values in this list
must match the order of values in the skulist.
amtlist= This is the amount value in form of (price * quantity * 100). A sale
of $3.25 is output as 325. GBP example: a total sale of £3.50 is
output as 350. The amount value excludes shipping and tax. For an
order with distinct items, this is a pipe-delimited list of amount
values.
curr= This is currency, like GBP or USD.
Code:
<img src="https://track.linksynergy.com/ep?mid=1234&ord=TheOrderNumber&skulist=xxxx &qlist=xxx&amtlist=ActinicOrderTotal&cur=GBP">
ActinicOrderTotal - the order total formatted in the Actinic internal format (integer number in currency base unit)
Also, am I able to extract information for 'skulist' and 'qlist'? The clever way Google Analytics has been setup to work in Actinic suggests (y) yes, but the javascript (if that is what will power a solution) is far beyond me.
Any suggestions, clues or guesses are gratefully appreciated. TIA, 0
Comment