Page 43 of 68 FirstFirst ... 33414243444553 ... LastLast
Results 421 to 430 of 672
  1. #421
    Join Date
    Oct 2005
    Location
    Germany
    Posts
    60
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    Hi Andrew,
    my last posting was just the wrong way, because the inverted comma produces again a mistake. It must be


    Code:
     
    if(GOOGLE_ANALYTICS_USE_PAGENAME == 'true') {
    $google_analytics_page = '"' . zen_output_string_protected($breadcrumb->last()) . (isset($_GET['page']) ? ' (' . sprintf(PREVNEXT_TITLE_PAGE_NO, $_GET['page']) . ')' : '') . '"';
    } else {
    $google_analytics_page = '';

  2. #422
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Google Analytics Integration

    Hi michaelhl,
    You are right. Fix it in next version.

  3. #423
    Join Date
    Oct 2005
    Location
    Germany
    Posts
    60
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    It's a great work. All is viewable in Google Analytics. The net amount, the tax, the shipping costs, the products. Well done!!!

    I thought it might slow down the shop but it seems it fasten it up. Great!

  4. #424
    Join Date
    Jun 2008
    Location
    UK
    Posts
    209
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    I cannot get the e-commerce part of analytics to work.

    I thought Id set up everything correctly but when going on Adwords to verify the action code it says verification failed and no amounts are being shown in the e-commerce part of analytics.

    Im not sure if Im typing in the correct url when I verify with
    http://www.tidytoys.co.uk/shop/index...eckout_success

    Ive put extra coding into includes/modules/pages/checkout_success/header_php.php

    ie .....


    // Needs reworking in v1.4 for checkout-rewrite
    $zv_orders_id = ($_SESSION['order_number_created'] >= 1) ? $_SESSION['order_number_created'] : $orders_id;
    $orders_id = $zv_orders_id;

    // Added the below field for Google Analytics E-commerce Tracking (in the footer file)
    $zv_order_tax = $orders->fields['order_tax'];
    $zv_order_city = $orders->fields['delivery_city'];
    $zv_order_state = $orders->fields['delivery_state'];
    $zv_order_country = $orders->fields['delivery_country'];

    // Google Analytics Tracking (This can be removed and not harm anything)
    //Altered code below to accomdate additional fields that Google Analytics can Track
    $products_query = "select products_id, products_name, products_model,products_price, products_quantity from " . TABLE_ORDERS_PRODUCTS . "
    where orders_id = '" . $zv_orders_id . "'
    order by products_name";
    $products_google = $db->Execute($products_query);
    //********************Google codes**************************
    while (!$products_google->EOF) {
    $products_array_google[] = array('id' => $products_google->fields['products_id'],
    'text' => $products_google->fields['products_name'],
    'model' => $products_google->fields['products_model'],
    'price' => $products_google->fields['products_price'],
    'quantity' => $products_google->fields['products_quantity']);
    $products_google->MoveNext();
    }
    //*************************End Google Codes*******************
    // End Google Analytics Code


    // prepare list of product-notifications for this customer
    $global_query = "SELECT global_product_notifications
    FROM " . TABLE_CUSTOMERS_INFO . "
    WHERE customers_info_id = :customersID";
    -------------------------------------------------------------------
    Ive found where the 10 digit conversion code is xxxxxxxxxx and
    changed the code to the code number on Adwords.

    Ive turned the e-commerce on in the Analytics panel.

  5. #425
    Join Date
    Jun 2008
    Location
    UK
    Posts
    209
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    Ive managed to get the analytics e-commerce working.

    Earlier on I found a thread that said the add an extra file with a piece of Javascript in it. Later on in the thread it said it was no longer needed. I removed mine and its removal seems to have kicked my Analytics into action.

  6. #426
    Join Date
    Aug 2008
    Posts
    16
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    I installed the latest version, 2.2, and i'm seeing analytics code on my site, and I have Analytics setup. I'm getting nothing in Analytics thought.

    http://www.collectiblefinewine.com

    Any thoughts?

    I installed the earlier version, 2.12, and had the same results....nothing.

    I'm lost.

  7. #427
    Join Date
    Jan 2007
    Location
    1.5 miles from Home
    Posts
    674
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    Quote Originally Posted by chaddb View Post
    I installed the latest version, 2.2, and i'm seeing analytics code on my site, and I have Analytics setup. I'm getting nothing in Analytics thought.

    http://www.collectiblefinewine.com

    Any thoughts?

    I installed the earlier version, 2.12, and had the same results....nothing.

    I'm lost.
    Takes 24 hours for data to post to your account.
    This is every day, so you won't see todays data until tomorrow and so on...

    M

  8. #428
    Join Date
    Aug 2008
    Posts
    16
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    Quote Originally Posted by tophand View Post
    Takes 24 hours for data to post to your account.
    This is every day, so you won't see todays data until tomorrow and so on...

    M
    I've had it installed for 6 days. Still no data.

  9. #429
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Google Analytics Integration

    File tpl_footer_googleanalytics.php
    Find
    Code:
      $google_analytics_page = "'" . zen_output_string_protected($breadcrumb->last()) . (isset($_GET['page']) ? ' (' . sprintf(PREVNEXT_TITLE_PAGE_NO, $_GET['page']) . ')' : '') . '"';
    Replace by
    Code:
      $google_analytics_page = '"' . zen_output_string_protected($breadcrumb->last()) . (isset($_GET['page']) ? ' (' . sprintf(PREVNEXT_TITLE_PAGE_NO, $_GET['page']) . ')' : '') . '"';

  10. #430
    Join Date
    Sep 2004
    Location
    Murfreesboro, TN
    Posts
    588
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    ok ok, I must be in complete moron mode or something as this mod seems easier to install than the one i have used in the past from econcepts. However, I have followed your directions in the readme file and it seems that the site is not tracking properly.

    Can someone please help assist in the troubleshooting part?

    the site is: http://www.bornagaintechnologies.org

    tia...

    0be1
    "Give me one hundred preachers who fear nothing but sin and desire nothing but God, and I care not whether they be clergymen or laymen, they alone will shake the gates of Hell and set up the kingdom of Heaven upon Earth." - John Wesley

 

 
Page 43 of 68 FirstFirst ... 33414243444553 ... LastLast

Similar Threads

  1. Google Analytics: Site Search Integration
    By saitomedia in forum General Questions
    Replies: 1
    Last Post: 29 Jul 2010, 08:08 AM
  2. google analytics integration
    By amnon_d in forum General Questions
    Replies: 3
    Last Post: 14 Jul 2009, 12:04 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR