Page 6 of 217 FirstFirst ... 456781656106 ... LastLast
Results 51 to 60 of 2161
  1. #51
    Join Date
    Jul 2006
    Posts
    129
    Plugin Contributions
    1

    Default Re: Simple Google Analytics - Support

    Quote Originally Posted by bettysue View Post
    Sorry for the delay Cuda, the email notification got lost amongst some other mail.

    I put the / back in the code.

    http://www.buysoul.com

    thank you,

    betty
    Looks like you got it Bettysue, as far as I can see all the code is there that you need to track your site. Enjoy the stat's they can be very helpful!

    cuda
    ---------------------------------
    Barracuda Productions pure instincts

  2. #52
    Join Date
    May 2004
    Posts
    766
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    Thank you Cuda and Dr. Byte for the help and advise!!

    betty

  3. #53
    Join Date
    Feb 2007
    Posts
    2
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    i just installed it, it works great!

  4. #54
    Join Date
    Sep 2005
    Posts
    53
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    Quote Originally Posted by cuda View Post
    Hey nellie I am back to help....

    ok first things first view the source of your home page:
    Thanks Cuda, been away for a few days. I have removed the hard coded script in the footer, it now looks right when you view the source. Iwill have to contact Paygate re the dummy creditcard No, I dont have it off hand.

  5. #55
    Join Date
    Jul 2006
    Posts
    129
    Plugin Contributions
    1

    Default Re: Simple Google Analytics - Support

    Quote Originally Posted by Nellie View Post
    Thanks Cuda, been away for a few days. I have removed the hard coded script in the footer, it now looks right when you view the source. Iwill have to contact Paygate re the dummy creditcard No, I dont have it off hand.
    sounds good nellie just pm me the code so it is not out for everyone to see here on the forums.
    ---------------------------------
    Barracuda Productions pure instincts

  6. #56
    Join Date
    Jul 2006
    Posts
    129
    Plugin Contributions
    1

    Default Re: Simple Google Analytics - Support

    Quote Originally Posted by Nellie View Post
    Thanks Cuda, been away for a few days. I have removed the hard coded script in the footer, it now looks right when you view the source. Iwill have to contact Paygate re the dummy creditcard No, I dont have it off hand.
    Ok I got to the checkout success page using the HSBC payment method, the cc number you gave just always kicked me back to your payment page after I entered it. At the bottom of your checkout success page your code is only the standard tracking code:

    Code:
    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
    </script>
    <script type="text/javascript">
    _uacct = "UA-xxxxxx-x";
    urchinTracker();
    </script>
    Also on this page you do not have properly formated html because you do not have any </html> or </body> clossing tags. But that is besides the point...

    It appears your your_template/google_analytics/google_analytics.php is not functioning properly. What you should see on your checkout_success page is something like this:

    Code:
    <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
    </script>
    <script type="text/javascript">
    _uacct = "UA-XXXXXX-1";
    urchinTracker();
    </script><form style="display:none;" name="utmform">
    <textarea id="utmtrans">UTM:T|6||62.78|0.00|35.28|TEST|Louisiana|United States UTM:I|6|1191|product name|2.00|1</textarea>
    </form>
    Notice the hidden form with the transaction data. Try to upload the your_template/google_analytics/google_analytics.php file again. Also make sure you removed the hard coded google code and only have this at the bottom of your template just before the </body> tag:

    PHP Code:
    <?php
    if (file_exists($template->get_template_dir('.php',DIR_WS_TEMPLATE$current_page_base,'google_analytics') . '/google_analytics.php'))
        {
        require(
    $template->get_template_dir('.php',DIR_WS_TEMPLATE$current_page_base,'google_analytics') . '/google_analytics.php');
        }
    ?>
    Then do a test transaction and view your source to see if you get the hidden transaction form....report back
    ---------------------------------
    Barracuda Productions pure instincts

  7. #57
    Join Date
    Sep 2005
    Posts
    53
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    Cuda, don't know if I got an old set of files, but my your_template/google_analytics/google_analytics.php does not have a closing body tag. These are the last few lines of code:

    Code:
    //echo transaction data
    echo '<form style="display:none;" name="utmform">
    <textarea id="utmtrans">' 
    . addslashes($transaction) . ' ' 
    . addslashes(trim($items))
    . '</textarea>
    </form>';
    }
    ?>
    Is this a problem?

  8. #58
    Join Date
    Sep 2005
    Posts
    53
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    Uploaded a new copy of your_template/google_analytics/google_analytics.php, but still not getting the hidden form.

  9. #59
    Join Date
    Jul 2006
    Posts
    129
    Plugin Contributions
    1

    Default Re: Simple Google Analytics - Support

    Quote Originally Posted by Nellie View Post
    Cuda, don't know if I got an old set of files, but my your_template/google_analytics/google_analytics.php does not have a closing body tag. These are the last few lines of code:

    Code:
    //echo transaction data
    echo '<form style="display:none;" name="utmform">
    <textarea id="utmtrans">' 
    . addslashes($transaction) . ' ' 
    . addslashes(trim($items))
    . '</textarea>
    </form>';
    }
    ?>
    Is this a problem?
    Nellie there should be no closing tag in any of this modules files that should be in your main site template. Make sure the code at the bottom of your templates/[your_template]/common/tpl_main_page.php just before the body tag is:

    PHP Code:
    <?php
    if (file_exists($template->get_template_dir('.php',DIR_WS_TEMPLATE$current_page_base,'google_analytics') . '/google_analytics.php'))
        {
        require(
    $template->get_template_dir('.php',DIR_WS_TEMPLATE$current_page_base,'google_analytics') . '/google_analytics.php');
        }
    ?>
    Is it there?
    ---------------------------------
    Barracuda Productions pure instincts

  10. #60
    Join Date
    Sep 2005
    Posts
    53
    Plugin Contributions
    0

    Default Re: Simple Google Analytics - Support

    This is what I have at the end of templates/[your_template]/common/tpl_main_page.php :

    Code:
        <td align="center" colspan="3"><div class="banners"><?php echo zen_display_banner('static', $banner); ?></div>  </td>
      </tr>
    <?php
        }
      }
    ?>
    </table>
    <?php require(DIR_WS_MODULES . 'footer.php'); ?>
    <?php
    require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
    ?>
    </body>

 

 
Page 6 of 217 FirstFirst ... 456781656106 ... LastLast

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