Pixel/Eventtracking When Cloaking

Joined
Nov 14, 2018
Messages
44
Reaction score
9
Hello!

I'm in need of a tool to track my conversions from Keyword -> Event (outclick).

I'm doing cloaked campaigns and i'm not sure if it's a good idea to use Google Software for tracking as it might detect something sketchy.

Do you have any recommendations on how to best do this properly without any risk of suspending ads account?
 
maybe try yandex?

what are you doing? I am just curious
 
maybe try yandex?

what are you doing? I am just curious
I'm really green when it comes to tracking etc, had a look at Yandex, not sure it works to create and track the data "Google Ads Keyword -> Safepage -> Cloaked page -> Outbound click". Or maybe I'm mistaken?

I'm in a few different niches,
 
Hello!

I'm in need of a tool to track my conversions from Keyword -> Event (outclick).

I'm doing cloaked campaigns and i'm not sure if it's a good idea to use Google Software for tracking as it might detect something sketchy.

Do you have any recommendations on how to best do this properly without any risk of suspending ads account?
its my personal opinion while doing blackhat (especially cloaking ) dont do to much experniment with landing page . Just bid on top keywords you are sure to perform .. You can track the real traffic to money page using utm source via google analytics . putting conversion code on per landing page is risky ..

Just to guerilla marketing ( bid max cpc to top keywords, show your ads in top bag maximum traffic and run away ... this is best way ..
Putting conversion code like stuff is risky
 
its my personal opinion while doing blackhat (especially cloaking ) dont do to much experniment with landing page . Just bid on top keywords you are sure to perform .. You can track the real traffic to money page using utm source via google analytics . putting conversion code on per landing page is risky ..

Just to guerilla marketing ( bid max cpc to top keywords, show your ads in top bag maximum traffic and run away ... this is best way ..
Putting conversion code like stuff is risky
There must be some software that works outside Googles ecosystem that can provide me a likewise service, just requiring me to put in the tracking code in the campaign settings in my account + code on all pages.

Isn't analytics risky to use when doing BH? I don't want to send the google bots to my money page.

So i can track KW -> Moneypage Event (click on button) using utm source via google analytics? Or am I misunderstanding you?
 
keitaro, binom, or custom script appending all parameters from url to all links on website (super easy java script will do it)
 
Hello!

I'm in need of a tool to track my conversions from Keyword -> Event (outclick).

I'm doing cloaked campaigns and i'm not sure if it's a good idea to use Google Software for tracking as it might detect something sketchy.

Do you have any recommendations on how to best do this properly without any risk of suspending ads account?

Google lets you track keywords via its utm_term URL parameter. Your goal is to pass it through to your link/button on the cloaked page. Most cloakers, including ours, have an option for URL parameters passthru, which passes them across the funnel to your cloaked page. So, it boils down to appending utm_term to your link/button on the cloaked page. A trivial example of how to do that with PHP:

Code:
<a href="https://outbound-link.test/?<?= http_build_query($_GET) ?>">Link to final destination</a>

Note how PHP's http_build_query() function is used to append all of the incoming URL parameters to your target URL. A JavaScript version can be coded up as well.
 
Back
Top