Installing ClickCease Tracking Code

Hi there everyone,

I am trying to install this code into my site

Click Fraud Protection

I have already setup a child theme and installed Adwords Tracking, but I’m not entirely sure if I can use the same script that I used to install Adwords or if I should use a different one, and if so which?

Thanks in advance for the help :slight_smile:

Hello There,

Thanks for posting in! You can simply update your code and have something like this:

// Add scripts to wp_head()
function child_theme_head_script() { ?>

	<!-- Your Adwords code goes here -->

	<!-- Your ClickCease Tracking Code goes here -->

<?php }

add_action( 'x_before_site_begin', 'child_theme_head_script' );

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.