Articles on: Getting Started

How to add additional info to conversions in ClickGUARD?

You can add additional information to conversion events when installing the conversion code.

This info will be shown in click log and click forensics:



Add conversion comment


If you'd like to attach a comment to your conversion event, simply pass it as a string of characters:

<script>
window.cg_conversion = "Order placed";
</script>

Add conversion value


If you'd like to attach a value to your conversion event, simply pass it as a number value:

<script>
window.cg_conversion = 10.2;
</script>

Hint: The value will be displayed in the currency of the Google Ads account where conversion has occurred.

Add conversion comment and value


If you'd like to attach both comment and value to your conversion event, pass them as a JSON object:

<script>
window.cg_conversion = { comment: "Subscription", value: 99.99 };
</script>

Updated on: 24/02/2023

Was this article helpful?

Share your feedback

Cancel

Thank you!