Page 6 of 68 FirstFirst ... 456781656 ... LastLast
Results 51 to 60 of 672
  1. #51
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    Quote Originally Posted by mafiasam
    after adding this mod to my cart I am getting some problems when viewing in Firefox.

    First of all my large image popups are not showing in many cases.
    You can view this problem here...
    http://www.oldwestgames.com/copag%C3...tup-p-310.html
    viewing the same page in IE there is no problem with the large image popup

    Upon viewing the errors I do notice that "urchinTracker is not defined" is on all pages - please explain how to get rid of these errors...

    i went here
    http://www.google.com/support/analyt...vascript_27244
    used static php solution but that did not work it just added a second tracker error

    please help
    Okay this is a weird one but I figured it out. I'm not sure if it is the GoogleAnalytics or if its the Chemo's Ultimate SEO URLs causing it or what but I do know that it is a naming convention for the product name.

    Here's the deal. I went through and hunted down all my products that were having image popup problems and strangely enough they all had the trademark symbol in common; ie, Bee™ Playing cards or Copag™ Playing cards. As soon as I renamed these products the problem was solved and this was only in Firefox not IE so this is really odd.

    another odd thing. It doesn't happen with the registered trademark symbol; ie, ESPN® Poker Club Standard Playing Cards.

    If anyone understands this or can figure out what's going on please do tell but until then I'm avoiding the ™ symbol.

    good luck.
    mafiasam

  2. #52
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    More strangeness (yeah it's a word), lol...

    I noticed something really odd on my GoogleAnalytics results. Now I am not sure what is the problem here but I was hoping that someone with some experience might have an answer.

    I am getting results from a site called http://waselly.com/
    and it seems to be infiltrating my results...

    you can view it here - http://www.oldwestgames.com/images/google_anomaly.jpg

    or it's attached in an abbreviated version

    This view is from content by titles under the webmaster view. I am not sure why waselly is being read as one of my page titles. Can anyone explain this?
    Attached Images Attached Images  

  3. #53
    Join Date
    Jul 2006
    Posts
    129
    Plugin Contributions
    1

    Default Re: Google Analytics Integration

    Well I have been looking to use this module but concerned that if google analytics goes down my site will not load because this mod includes everything at the top. Google actually tells you to include the code at the bottom of the page just before the </body> tag to avoid this issue. So I have come up with a hack to include the code at the bottom. Here it is:

    First we need to move files around a bit so they will not load at the top but at the bottom.

    1. Create a new folder in includes/templates/yourtemplate named 'bottom_jscript'

    2. Now move 'jscript_google_analytics.php' to the new folder

    3. Create a new folder in includes/modules/pages/checkout_success named 'google_analytics'

    4. Move 'jscript_google_analytics.php' and 'on_load_google_analytics.js' to this new folder.

    Ok now we have our files in the new folders lets move to the hack.

    5. We will add the code below to includes/templates/yourtemplate/common/tpl_main_page.php at the very bottom just before the body tag as instructed by google - and yes I would jump off a bridge if google said too....

    PHP Code:
    /** Google Analytics Main Code include
     * load all site-wide bottom jscript_*.php files from includes/templates/YOURTEMPLATE/bottom_jscript/, alphabetically
     */
      
    $directory_array $template->get_template_part($template->get_template_dir('.php',DIR_WS_TEMPLATE$current_page_base,'bottom_jscript'), '/^jscript_/''.php');
      while(list (
    $key$value) = each($directory_array)) {

    /**
     * include content from all site-wide bottom jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically.
     * These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
     */
        
    require($template->get_template_dir('.php',DIR_WS_TEMPLATE$current_page_base,'bottom_jscript') . '/' $value); echo "\n";
      }

    //check to see if current page is checkout_success and include google analytics for order if it is
    if($page_directory == 'includes/modules/pages/checkout_success')
    {

    /**
     * load all google_analytics-specific jscript_*.js files from includes/modules/pages/PAGENAME/google_analytics, alphabetically
     */
      
    $directory_array $template->get_template_part($page_directory 'google_analytics''/^jscript_/''.js');
      while(list (
    $key$value) = each($directory_array)) {
        echo 
    '<script type="text/javascript" src="' $page_directory 'google_analytics' '/' $value '"></script>' "\n";
      }
    /**
     * include content from all google_analytics-specific jscript_*.php files from includes/modules/pages/PAGENAME/google_analytics, alphabetically.
     */
      
    $directory_array $template->get_template_part($page_directory '/google_analytics''/^jscript_/');
      while(list (
    $key$value) = each($directory_array)) {
    /**
     * include content from all google_analytics-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
     * These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
     */
        
    require($page_directory '/google_analytics' '/' $value); echo "\n";
      }

    That is it now the code will be included on each page and the cart contents will be included at checkout success, had to use a simple check to avoid running code for every page as it is not needed.

    I will be testing this but works so far let me know if you have any thoughts.
    ---------------------------------
    Barracuda Productions pure instincts

  4. #54
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    Quote Originally Posted by mafiasam
    More strangeness (yeah it's a word), lol...

    I noticed something really odd on my GoogleAnalytics results. Now I am not sure what is the problem here but I was hoping that someone with some experience might have an answer.

    I am getting results from a site called http://waselly.com/
    and it seems to be infiltrating my results...

    you can view it here - http://www.oldwestgames.com/images/google_anomaly.jpg

    or it's attached in an abbreviated version

    This view is from content by titles under the webmaster view. I am not sure why waselly is being read as one of my page titles. Can anyone explain this?
    Figured this out. This Waselly.com site is using my Google Analytics code on a bunch of their pages. It seems to be a coding error because our codes are one number off from each other - a four and a seven. Ten key? lol. Their main page shows the right code but I think that's about it. The rest have my code. They are using a php shopping cart but apparently it's not zencart otherwise the code would be the same site-wide. Am I right?

    Anyways I emailed them and requested that they fix it. Wonder how long that will take. I had emailed Google Analytics support for this too but no response and I couldn't find this anywhere in their support pages. Of course it would have to happen to me.

  5. #55

    Default Re: Google Analytics Integration

    it seems that i have this contrib installed correctly, however analytics dont seem to be showing my data.

    When i check to make sure that its working through analytics, it shows that it is. But still no data is showing up.

    Iv read through this topic over and over, and i dont see anyone having a fix for it.

    Im using 1.3.5d and i just re-installed the files to make sure they are up to date.

    Can someone please help me figgure out why nothing is showing on analytics, yet it says that its gathering data?
    Thanks
    Benjamin
    Super Orders2
    Info at a glance
    export email address
    encrypted master pass
    quick updates
    recover carts
    order Tracking
    Tabbed products lite - admin edition
    Hosted with sashbox.net <- best host around...

  6. #56

    Default Re: Google Analytics Integration

    well i dont know if this was the cause of the problem, but
    I just noticed that when i go to analytics and click on Site Overlay, it no longer pulls up the front page of my site, it shows this error. Maybe this is why its not working
    Failed to Obtain Webpage: http://www.myrcsupply.com/www.myrcsu...ain_page=index
    Error Code: 404

    i changed my settings on the analytics account, and it has seemed to fix that part.

    Im still wondering why nothing is showing up since i installed this modual into the new zencart....

    has anyone else experianced this issue?
    Super Orders2
    Info at a glance
    export email address
    encrypted master pass
    quick updates
    recover carts
    order Tracking
    Tabbed products lite - admin edition
    Hosted with sashbox.net <- best host around...

  7. #57
    Join Date
    Mar 2005
    Location
    Bogotá, Colombia
    Posts
    32
    Plugin Contributions
    2

    Default Re: Google Analytics Integration

    I did copy and paste the google code in the tpl_main_page.php same place for the Comodo script. and it is working smooth. hope this can help some one
    Visit www.colombianhandcrafts.org, we are in the fair trade move!

  8. #58

    Default Re: Google Analytics Integration

    Quote Originally Posted by linkedla
    I did copy and paste the google code in the tpl_main_page.php same place for the Comodo script. and it is working smooth. hope this can help some one
    please explane a bit more if you would.
    Thanks
    Benjamin
    Super Orders2
    Info at a glance
    export email address
    encrypted master pass
    quick updates
    recover carts
    order Tracking
    Tabbed products lite - admin edition
    Hosted with sashbox.net <- best host around...

  9. #59
    Join Date
    Sep 2006
    Location
    Cheshire, UK
    Posts
    103
    Plugin Contributions
    0

    Default Re: Google Analytics Integration

    im quite concerned about my integration whereby google adwords is saying im getting dozens of clicks a day but in my analytics accounr they never register as visitors?

  10. #60

    Default Re: Google Analytics Integration

    make sure you have everything setup correctly.

    you prolly are getting those hits, and they just arnt being passed to analytics.

    what does your counter say on the admin console? are you gathering traffic?
    Super Orders2
    Info at a glance
    export email address
    encrypted master pass
    quick updates
    recover carts
    order Tracking
    Tabbed products lite - admin edition
    Hosted with sashbox.net <- best host around...

 

 
Page 6 of 68 FirstFirst ... 456781656 ... 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

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