Google Adwords Conversion Tracking – Magento 1.9 Guide

ce-1.9.0.1google analyticsmagento-1.9

We have recently set up a magento community site running 1.9.0.1 having moved from go.

We are trying to set up the google adwords conversion tracking, there is a piece of code that they want placing on the success page.

Where is this located in 1.9.0.1?

Best Answer

As Step1:

you need to add conversion code on ordee success file

app/design/frontend/yourpackage/yourtemplate/template/checkout/success.phtml

if file no exits then:

copy success.phtml from

app/design/frontend/base/default/template/checkout/

and pasted

app/design/frontend/yourpackage/yourtemplate/template/checkout/

add your code on new success.phtml

in this file you can order id using below code

$this->getOrderId()

OR: check this extension http://www.magentocommerce.com/magento-connect/luka-google-adwords-conversion-tracking.html

Related Topic