Welcome to our Support Center
General
How to Track Conversions with ClickGuard


By having ClickGuard track conversion you can block visitors that often click on your ads but never convert or block them after converting.


Important: You can track conversion with ClickGuard provided that you’ve previously installed the website tracking code

Landing page conversion

When loading a specific page should be reported as a conversion, like a "Thank You" page. Put the following code at the bottom of the page body:

<script defer type="application/javascript" src="https://pulse.clickguard.com/sc"></script>


Make sure you place the code snippet before the ending </body> tag, and that the tracking code is installed on this page as well.

Custom events

When triggering a conversion on other events, like clicking on a button or submitting a form, you need to execute one of the following codes when those events happen:

 

// simple conversion
CG.conversion()

// with message
CG.conversion('Sample conversion message')

// with message and value
CG.conversion('Sample conversion message', 149)
Did this answer your question?