PDA

View Full Version : Adwords Conversion Tracking


sebenza
11-03-06, 12:05 AM
Hi All-
According to Google, the conversion tracking value cant contain the "$" in the value. The OpenUI token %order_subtotal% contains the "$". What are you using to have a numerical value without the $?

sebenza
11-03-06, 12:10 AM
I'll now answer my own question:

%EXPR(glosub('%order_subtotal%', '$', ''))%

sebenza
11-03-06, 12:21 AM
One more thing... In the example below, would the following:

if (order_subtotal) {

be

if (%order_subtotal%) {

or

if (order_subtotal) {

Example:

if (order_subtotal) {
var google_conversion_value = %order_subtotal%;
}

sebenza
11-03-06, 12:24 AM
To answer my own question again... it looks like it should be:

if (%order_subtotal%) {