Hi,
I`m using this Google Tag Manager extension ( http://www.magentocommerce.com/magento-connect/google-tag-manager.html ) for my website, but the script is added in <section>. Can somebody tell me where should i look in order to modify the place where the script is showing in html file?
Thank You.
Solved! Go to Solution.
Look at /app/design/frontend/base/default/layout/shopgo/gtm.xml.
You will see: <reference name="after_body_start">
Change after_body_start to where you want it.
Look at your template files and see where you actually want it (after_body_start, header, head, content, footer, before_body_end) or add a new position (we usually add before_content and after_content to sites we manage, you can add in page.xml - just search for after_body_start and copy that to create your own reference then add to each page template.
Look at /app/design/frontend/base/default/layout/shopgo/gtm.xml.
You will see: <reference name="after_body_start">
Change after_body_start to where you want it.
Look at your template files and see where you actually want it (after_body_start, header, head, content, footer, before_body_end) or add a new position (we usually add before_content and after_content to sites we manage, you can add in page.xml - just search for after_body_start and copy that to create your own reference then add to each page template.
You saved my day!
Thank You.
I had the same situation, now its cleared
Thanks a lot
Just wondering why would change it, it needs to be called after_body_start, no?
Because in my case was inside <section></section> and was not working.