Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author dpowney

    (@dpowney)

    I have just added a filter in v 4.0.12 available now so you can add any query parameters you do not want included in the URL.

    function my_ignored_query_params( $ignored_query_params = array() ) {
    	array_push( $ignored_query_params, 'utm_test' );
    	return $ignored_query_params;
    }
    add_filter( 'ha_ignore_query_params', 'my_ignored_query_params', 10, 1 );
    Thread Starter Bary

    (@bary)

    Thank you. I will try that ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘gclid parametr (?whateverparametr)’ is closed to new replies.