Conversion Tracking on Review Sites
-
ormarket - Posts: 18
- Joined: 02 May 09
23 Jun 09 7:20 am
Conversion Tracking on Review Sites
Hi.
I am trying to create conversion tracking on my review site and i can't figure it out...
How do i make TID's to my keyword list based on my adwords campaign.
What is the process?
Do i need tools like ppc speed? or i can do it manually (and effective)? :-)
Thanks,
Or
I am trying to create conversion tracking on my review site and i can't figure it out...
How do i make TID's to my keyword list based on my adwords campaign.
What is the process?
Do i need tools like ppc speed? or i can do it manually (and effective)? :-)
Thanks,
Or
-
johndelb
- Posts: 5
- Joined: 25 Apr 09
07 Jul 09 4:41 am
Hey there, don't know if you got an answer already.. but I can try and explain it. Requires a little bit of HTML/PHP know how.. but its pretty easy to do.. maybe =] This will only work if your site has PHP enabled on its server.
In the <HEAD> section of your landing page you want to include this piece of PHP code:
So it looks similar to this:
THEN, wherever you have your hoplink, you need to append a piece of PHP code to it that grabs the "tracking ID" we are working with, so add the following code after your hoplink
So a whole hoplink looks like this:
Then the last step is to assign a tracking number to your keywords in AdWords. This is done by adding "?id=XXXX" at the end of your destination URL for your ad group. So your Destination URL for your adgroup in AdWords looks like this:
You can't give individual keywords a destination URL, so just put one keyword per ad group and then have individual tracking numbers per ad group. This allows you to track conversions in Clickbank if you need it.
Hope that was helpful! Let me know if I need to clarify anything.
In the <HEAD> section of your landing page you want to include this piece of PHP code:
- Code: Select all
<?php $tracking=$_GET['id']; ?>
So it looks similar to this:
- Code: Select all
<html>
<head>
<?php $tracking=$_GET['id']; ?>
<title>Title of Your Landing Page Here</title>
</head>
<body>
</body>
THEN, wherever you have your hoplink, you need to append a piece of PHP code to it that grabs the "tracking ID" we are working with, so add the following code after your hoplink
- Code: Select all
?tid=<?php echo $tracking;?>
So a whole hoplink looks like this:
- Code: Select all
<a href="http://XXXXXXX.XXXXXXXXX.hop.clickbank.net/?tid=<?php echo $tracking;?>">
Then the last step is to assign a tracking number to your keywords in AdWords. This is done by adding "?id=XXXX" at the end of your destination URL for your ad group. So your Destination URL for your adgroup in AdWords looks like this:
- Code: Select all
www.mysite.com/mylandingpage.php?id=8888
You can't give individual keywords a destination URL, so just put one keyword per ad group and then have individual tracking numbers per ad group. This allows you to track conversions in Clickbank if you need it.
Hope that was helpful! Let me know if I need to clarify anything.
-
bears34
- Posts: 33
- Joined: 23 Jan 09
08 Jul 09 5:03 pm
Awesome, thanks.
-
Fanatic
- Posts: 36
- Joined: 21 Nov 08
01 Sep 09 2:55 am
An alternative is to use Tracking202.
The concept is the same as the php method
described above but with T202 you get a user-friendly
user-interface.
Basically you create your campaign with T202, it
generates a link for you, and you stick that link
into your ad.
To track conversions you'll need to upload your TIDs
back onto T202 though.
Hope this isn't too confusing.
Oh by the way, T202 is free.
The concept is the same as the php method
described above but with T202 you get a user-friendly
user-interface.
Basically you create your campaign with T202, it
generates a link for you, and you stick that link
into your ad.
To track conversions you'll need to upload your TIDs
back onto T202 though.
Hope this isn't too confusing.
Oh by the way, T202 is free.
Need to outsource article writing or graphics design? Drop me a PM.
Follow me on Twitter? http://twitter.com/kangwei
Follow me on Twitter? http://twitter.com/kangwei
