When pasting AdWords code into the provided textbox (Marketing > Google Analytics and Adwords > Paste sales conversion tracking code here if required), SellerDeck offers to automatically update this if
occurs. It then replaces this with
.
This is placed into the Receipt template via the <actinic:variable name="GoogleAdwordsSale" /> variable. However once uploaded the Javascript is still reading
and is causing a Javascript error.
To remedy this for the time being I have substituted the automatic 'correction' to use
instead of
.
When doing this SellerDeck prompts a warning that it can't auto replace the code and advises that
should be used manually to reference the value. Which is also wrong because it also won't convert and it contains a currency symbol.
Code:
google_conversion_value = 1.00;
Code:
google_conversion_value = <actinic:variable name="OrderTotalBaseUnit" />;
This is placed into the Receipt template via the <actinic:variable name="GoogleAdwordsSale" /> variable. However once uploaded the Javascript is still reading
Code:
google_conversion_value = <actinic:variable name="OrderTotalBaseUnit" />;
To remedy this for the time being I have substituted the automatic 'correction' to use
Code:
NETQUOTEVAR:ORDERTOTALBASEUNIT
Code:
<actinic:variable name="OrderTotalBaseUnit" />
When doing this SellerDeck prompts a warning that it can't auto replace the code and advises that
Code:
<actinic:variable name="TextOrderTotal" />