
Originally Posted by
mcarbone
Hi,
I apologize if this problem was posted elsewhere, but my google analytics is no longer tracking.
I installed the simple google analytics mod and updated my includes/templates/my_template/common/tpl_main_page with this code:
I also updated the admin with the google account number and tested. Everything worked fine at that point. Since then I have had two orders that did not register with Google Analytics.
I also have JROX installed, however that integration is in the tpl_footer.php file.
Any feedback always immensly appretiated!
Thank you,
Michelle
Google analytics JAM Affiliate Integration Instructions for Zen Cart
===========================================================================
1) DELETE the directory and file found here /includes/templates/[your template directory here]/checkout_success/tpl_footer.php
2) Open the following file:
/includes/templates/[your template directory here]/common/tpl_main_page.php
And replace the following code at the bottom of the page
PHP Code:
<?php
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
?>
With this code (making sure you put your actual domain name in place of "yourdomainhere.com" in the JAM AFFILIATE portion.)
PHP Code:
<?php
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
?>
<?php
if ($_GET['main_page']=="checkout_success") {
##########################################
## START JAM INTEGRATION WITH ZEN CART ##
## ZC Integration code by DrByte 8/2006 ##
##########################################
if (isset($zv_orders_id) && (int)$zv_orders_id > 0 && isset($order_summary) && is_array($order_summary)) {
if (!isset($_SESSION['affiliate_order_id']) || $_SESSION['affiliate_order_id'] != $zv_orders_id ) {
$_SESSION['affiliate_order_id'] = $zv_orders_id;
$commissionable_order_formatted = number_format($order_summary['commissionable_order'], 2, '.', '');
echo '<script language="javascript" type="text/javascript" src="https://www.yourdomainhere.com/affiliates/sale.php?amount=' . $commissionable_order_formatted . '&trans_id=' . $order_summary['order_number'] . '"></script>';
}
}
#######################################
## END JAM INTEGRATION WITH ZEN CART ##
#######################################
} // end if for determining if this was the checkout_success page.?>
3) Save and upload the tpl_main_page.php and you're all set.
.
Bookmarks