Page 27 of 217 FirstFirst ... 1725262728293777127 ... LastLast
Results 261 to 270 of 2161
  1. #261
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Simple Google Analytics - Support

    pyrobri,

    Oh, I didn't realize you had the "Waiting For Data" message. That means it was installed correctly and the URL was right (obviously).

    Through my research, I've heard reports of that message lasting anywhere from a few hours to a week or more. No rhyme or reason why.

    Glad you got it working.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  2. #262
    Join Date
    Feb 2007
    Location
    Los Angeles
    Posts
    359
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    [FONT=Arial]Hi[/FONT]

    [FONT=Arial]Can some one please direct me to a thread of clear explanation which folder and the exact place I should put my code I got from Google?[/FONT]

    [FONT=Arial]I am over a week testing many places and I get nothing working as far seeing any report.[/FONT]

    [FONT=Arial]Thank you[/FONT]

  3. #263
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Simple Google Analytics - Support

    motti,

    Are you manually entering the code from Google, or are you using the Simple Google Analytics Contribution?

    The contribution comes with a read me file that explains how to install the module. If you are using that, then there are only 2 files that you need to upload, and one change you need to make to a file (the tpl_main_page.php).

    If you are manually entering it by hand, then you can look at the following post:

    http://www.zen-cart.com/forum/showpo...&postcount=254
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  4. #264
    Join Date
    Feb 2007
    Location
    Los Angeles
    Posts
    359
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    Hi econcept
    i manuely enter it to one of my files , and i can't remmber which one it is now, i need to go thru and try to find it

    I wiil go thru the link you provide and see if i can make it work

    Thank you
    Last edited by motti; 2 Aug 2007 at 02:39 PM.

  5. #265
    Join Date
    Aug 2006
    Location
    portlandish, oregon
    Posts
    799
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    I guess what I don't understand is how to set up the filter to actually exclude it?

    I made a file with the JS code in it and just put it the Google_Analytics folder that came with the mod...wasn't sure where to put it so I put it there.

    Then Google said to create a filter....

    Filter Type: Custom filter > Exclude
    Filter Field: User Defined

    I guess this is where I am lost. I can create the filter but as far as how to tell it to exclude computers with that cookie...I have no idea.

  6. #266
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Simple Google Analytics - Support

    Quote Originally Posted by khopek View Post
    I guess what I don't understand is how to set up the filter to actually exclude it?

    I made a file with the JS code in it and just put it the Google_Analytics folder that came with the mod...wasn't sure where to put it so I put it there.

    Then Google said to create a filter....

    Filter Type: Custom filter > Exclude
    Filter Field: User Defined

    I guess this is where I am lost. I can create the filter but as far as how to tell it to exclude computers with that cookie...I have no idea.
    Send me your "js" code so I can take a look at what you are supposed to be excluding.

    I'll see if I can figure out what is going on for you.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  7. #267
    Join Date
    Feb 2007
    Location
    Los Angeles
    Posts
    359
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    Hi econcepts

    Sorry for not thanking you earlier , only done it short time ago, and l did Install the mod was very easy and Clear, I hope it will work ( I will see after midnight here)
    By any chance do you have any idea how can I delete all my attempt account I open at Google analyzer, I got abut 6 of them, I sent Google a Email 3 days ago and still no answer.

    Thank you

  8. #268
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Simple Google Analytics - Support

    motti,

    You may have to contact Google to delete them. If you are talking "website profiles", then you can delete the extra ones you do not want from your main page after you login to your Google Account.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  9. #269
    Join Date
    Jun 2007
    Posts
    68
    Plugin Contributions
    0

    red flag Re: Simple Google Analytics - Support

    someone give me a hand intregrating analytics in my site ? i followed the read me file but i was unable to find these file:

    2. Make sure your body tag in includes/templates/[your_template] includes this code (if not see trouble shooting below it is not neccassary but an addition to your template needs to be made):
    <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
    3. At the bottom of templates/[your_template]/common/tpl_main_page.php
    Add this just before the </body> tag:
    <?php
    require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
    ?>

    I am using a custom template i dont know if that makes a difference or not i thought i would let you know. i also dont see a your template folder in my includes/templates/

    Any advise would be much appreciated thanks

  10. #270
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Simple Google Analytics - Support

    Quote Originally Posted by slik666 View Post
    someone give me a hand intregrating analytics in my site ? i followed the read me file but i was unable to find these file:

    2. Make sure your body tag in includes/templates/[your_template] includes this code (if not see trouble shooting below it is not neccassary but an addition to your template needs to be made):
    <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
    If you are using the newer versions of Zen Cart, then this line is already present by default. No need to look for it. For the record though, it is in your "tpl_main_page.php" file.


    Quote Originally Posted by slik666 View Post
    3. At the bottom of templates/[your_template]/common/tpl_main_page.php
    Add this just before the </body> tag:
    <?php
    require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
    ?>

    I am using a custom template i dont know if that makes a difference or not i thought i would let you know. i also dont see a your template folder in my includes/templates/
    "your_template" is NOT the directory name. You are supposed to replace that with the custom directory for your OWN template. Make sense?

    SO, if your custom template is named "my_custom_template", then the path would look like this:

    /includes/templates/my_custom_template/common/tpl_main_page.php
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

 

 

Similar Threads

  1. v150 Simple Google Analytics .sql error !
    By Miff in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 10 Feb 2012, 11:33 PM
  2. Simple Google Analytics-not working
    By RobertG in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 11 Nov 2010, 06:07 PM
  3. Simple (From Google) Analytics Install
    By DagLindt in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 26 May 2009, 10:46 PM
  4. Simple google analytics- help
    By Pet Herbal Remedies in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 1 Oct 2008, 10:37 PM
  5. Simple Google Analytics not working
    By jvanree in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 29 May 2008, 03:46 AM

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