It is possible to add markup to the SellerDeck's receipt page in order to support an affiliate program. The markup is generally specified by the affiliate program, but a typical example would be:
<IMG SRC="https://www.server.com/log.cgi?amount=[order-amount-here]&orderid=[order-id-here]">
Translating this into a SellerDeck ready line, you would get:
<IMG SRC="https://www.server.com/log.cgi?amount=NumericOrderTotal&orderid=TheOrderNumber">
The variables available to an affiliate program of this nature are:
TheOrderNumber - order number.
FormattedOrderTotalHTML - the order total formatted in the appropriate currency and encoded for HTML display
e.g. £55.57
FormattedOrderTotalCGI - the order total formatted in the appropriate currency and encoded for CGI
e.g. %a355%2e57
ActinicOrderTotal - the order total formatted in the SellerDeck internal format (integer number in currency base unit)
e.g. 5557
NumericOrderTotal - the order total partially formatted in the appropriate currency. This value include decimal and thousand separators, but leaves off the currency symbol.
e.g. 55.57
NumericOrderTotalCGI - the order total partially formatted in the appropriate currency and encoded for CGI.This value include decimal and thousand separators, but leaves off the currency symbol.
e.g. 55%2e57
TextOrderTotal – The order total with currency symbols and a decimal point, with no encoding.
e.g. £55.57
<IMG SRC="https://www.server.com/log.cgi?amount=[order-amount-here]&orderid=[order-id-here]">
Translating this into a SellerDeck ready line, you would get:
<IMG SRC="https://www.server.com/log.cgi?amount=NumericOrderTotal&orderid=TheOrderNumber">
The variables available to an affiliate program of this nature are:
TheOrderNumber - order number.
FormattedOrderTotalHTML - the order total formatted in the appropriate currency and encoded for HTML display
e.g. £55.57
FormattedOrderTotalCGI - the order total formatted in the appropriate currency and encoded for CGI
e.g. %a355%2e57
ActinicOrderTotal - the order total formatted in the SellerDeck internal format (integer number in currency base unit)
e.g. 5557
NumericOrderTotal - the order total partially formatted in the appropriate currency. This value include decimal and thousand separators, but leaves off the currency symbol.
e.g. 55.57
NumericOrderTotalCGI - the order total partially formatted in the appropriate currency and encoded for CGI.This value include decimal and thousand separators, but leaves off the currency symbol.
e.g. 55%2e57
TextOrderTotal – The order total with currency symbols and a decimal point, with no encoding.
e.g. £55.57