Page 1 of 1

Anybody been successful with Clickbanks and Google Goals?

PostPosted: September 30th, 2011, 12:14 pm
by pfriedl
Hey all.
Ok, so we've been wrestling with adding goals to our anayltics, and it just isn't working. We've been through all the clickbank tutorials on anayltics and applied the settings, and we've got the eCommerce tracking on the thank you page, but we're still not getting any action, although we are getting sales. Here are our current settings:

Match Type: Regex (as per clickbank)
Goal URL: /?s2member_pro_clickbank_return=1
Goal Funnel 1: ^/pro/*$ (our site has a pro version sales page: oursite.com/pro/)
Goal Funnel 2: ^/order/orderform\.html.*$ (as per clickbank)
Goal Funnel 3: ^/order/ordersuccess\.html.*$ (as per clickbank)

On the site side of things, I have the Signup Tracking Code setup with the google eCommerce tracking:
Code: Select all
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-X']);
_gaq.push(['_trackPageview']);
_gaq.push(['_addTrans',
  '%%subscr_id%%',  // order ID - required
  '%%regular%%'     // total - required
]);
_gaq.push(['_addItem',
  '%%subscr_id%%',      // order ID - required
  '%%item_number%%',    // SKU/code - required
  '%%regular%%',        // unit price - required
  '1'                   // 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>


And I do have the site enabled as eCommerce on Google Analytics.

So I'm not sure why this isn't working. Can someone who's set up sucessful goals tracking clickbank sales offer some advice? Thanks!