Google Analytics Magento Code Not Displaying

I am new to magento and I have put my account number in my system> Configuration> Sales> Google API. I also included Google Analytics. But still, I don’t see the Google Analytics code in any of my magento applications. What I checked twice:

  • The account number is correct (they are for the same domain name for which we are trying).
  • Google Analytics enabled (Yes).
+5
source share
2 answers

The same thing here. It turns out the problem was caused by my custom theme, which was developed for magento 1.5 and now applies to 1.7.

///mytheme/layout/googleanalytics.xml :

    <block type="googleanalytics/ga" name="google_analytics" as="google_analytics" />

:

    <block type="googleanalytics/ga" name="google_analytics" as="google_analytics" template="googleanalytics/ga.phtml" />
+12

, Google after_body_start.
, , before_body_end. "googleanalytics.xml" app/design/frontend/base/default/layout.

+2

All Articles