Hi all
We are trying to work with a number of affiliates (including Webgains and Twenga) but need to provide their tracking systems with a value of the order total before VAT and shipping.
We have liaised with Actinic Support who indicated the following variable should be used on this variable:
.
However when we do a test transaction this fails!
Here is an extract of the code on the reciept page in Actinic v10:
and here is an extract of the source code on the web following a test transaction.
Note the order total (track.totalTTC) works correct (£3.40) but the subtotal (track.totalHT) brings up an error (NETQUOTEVAR:SUBTOTAL)!?!?
We suspect that the pearl scripts do not pass the "sub total" value through to reciept page but so far Actinic Support have been unable to confirm what is going on.
Does anyone have any experience with the subtotal value on the receipt page?
We are trying to work with a number of affiliates (including Webgains and Twenga) but need to provide their tracking systems with a value of the order total before VAT and shipping.
We have liaised with Actinic Support who indicated the following variable should be used on this variable:
track.totalHT = <Actinic:Variable Name="SubTotal"/>
However when we do a test transaction this fails!
Here is an extract of the code on the reciept page in Actinic v10:
track.totalHT = <Actinic:Variable Name="SubTotal"/>
track.currency = "GBP";
track.totalTTC = <Actinic:Variable Name="NumericOrderTotalCgi"/>
track.currency = "GBP";
track.totalTTC = <Actinic:Variable Name="NumericOrderTotalCgi"/>
track.totalHT = NETQUOTEVAR:SUBTOTAL
track.currency = "GBP";
track.totalTTC = 3%2e40
track.currency = "GBP";
track.totalTTC = 3%2e40
We suspect that the pearl scripts do not pass the "sub total" value through to reciept page but so far Actinic Support have been unable to confirm what is going on.
Does anyone have any experience with the subtotal value on the receipt page?
Comment