close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Variables needed to populate ECommerce in Google Analytics

Thread began 1/06/2010 6:33 am by Suggs | Last modified 9/25/2013 5:12 pm by Jason Byrnes | 2838 views | 5 replies |

Suggs

Variables needed to populate ECommerce in Google Analytics

Hi Folks,

Im needing to track ecommerce transactions from my web site via Google Analytics and below is the script for Google Analytics.
Ive put in the variables I think are needed based on the cartname.php script in the WA_eCart folder (attached) but they dont seem to work.

Can you advise where i can find the correct variables I need.

below is the analytics script (ive replaced my tracking number for privacy)
<!-- Begin Google Analytics code -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='plugins/" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-XXXXXXX-6");
pageTracker._trackPageview();
pageTracker._addTrans(
"$orderid", // Order ID
"", // Affiliation
"$TotalPrice", // Total
"", // Tax
"", // Shipping
"$ship_city", // City
"", // State
"$ship_country" // Country
);
pageTracker._addItem(
"$orderid", // Order ID
"$itemSKU", // SKU
"$itemName", // Product Name
"", // Category
"$itemPrice", // Price
"$itemQuantity" // Quantity
);
pageTracker._trackTrans();
} catch(err) {}
</script>
<!--/Google Analytics-->


The $ ive put in are based on what i think i should be using from the cartname.php script.
Ive attached the script from the WA_eCart folder as well.

Thanks

Paul

Attached Files
stonehouse_PHP.zip
Sign in to reply to this post

Jason ByrnesWebAssist

to output php variables into a javascript, you need to use opening and closing php tags and the php echo command:

for example:
$TotalPrice


should be:
<?php echo WA_eCart_DisplayMoney($stonehouse, $stonehouse->DisplayInfo("TotalPrice")); ?>


Look at how the variables are displayed on the confirm page, and copy the syntax from there.

Sign in to reply to this post

Maggie Simpson

I am working on this same GoogleAnalytics ecommerce implementation, but this thread is several years old. I am under the assumption that same php echo command still work with the current javascript code from Google; is this correct, and do you place single quotes on the outside of the opening and closing php tags?

Sign in to reply to this post

Jason ByrnesWebAssist

Yes, you an use the PHP echo commands.

If passing the variable as a static value would require quotes around it, then you should use quotes around the echo statement.

Sign in to reply to this post

Maggie Simpson

Here is the code I am amending for GA ecommerce tracking. Am I using the correct syntax as directed above? I believe I have it correct as far as variables related to the item are concerned, but what about shipping_city, or state_province? Should I use the session variable or use $eCart1->DisplayInfo? Thank you in advance for your help.


<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
_gaq.push(['_trackPageview']);
_gaq.push(['_addTrans',
'<?php echo $eCart1->DisplayInfo("OrderID"); ?>', // transaction ID - required
'', // affiliation or store name
'<?php echo WA_eCart_DisplayMoney($eCart1, $eCart1->DisplayInfo("TotalPrice")); ?>', // total - required
'<?php echo WA_eCart_DisplayMoney($eCart1, $eCart1->GetTax()); ?>', // tax
'', // shipping
'<?php echo((isset($_SESSION["shipping_city"]))?$_SESSION["shipping_city"]:"") ?>', // city
'<?php echo((isset($_SESSION["state_province"]))?$_SESSION["state_province"]:"") ?>', // state or province
'' // country
]);

// add item might be called for every item in the shopping cart
// where your ecommerce engine loops through each item in the cart and
// prints out _addItem for each
_gaq.push(['_addItem',
'<?php echo $eCart1->DisplayInfo("OrderID"); ?>', // transaction ID - required
'<?php echo $eCart1->DisplayInfo("productID"); ?>', // SKU/code - required
'<?php echo $eCart1->DisplayInfo("Name"); ?>', // product name
'', // category or variation
'<?php echo WA_eCart_DisplayMoney($eCart1, $eCart1->DisplayInfo("Price")); ?>', // unit price - required
'<?php echo $eCart1->DisplayInfo("Quantity"); ?>' // quantity - required
]);
_gaq.push(['_trackTrans']); //submits transaction to the Analytics servers

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

Sign in to reply to this post

Jason ByrnesWebAssist

as far as i can tell the syntax looks correct.

for the shipping address info, you would be using the session variables.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...