WooCommerce Google Analytics Integration integration
-
Hello, is there any way how to block loading google analytics cookies when using plugin:
WooCommerce Google Analytics Integration.I mean something like this example
add_filter(‘woocommerce_ga_disable_tracking’, ‘gdpr_ga_integration_wc’, 20);
function gdpr_ga_integration_wc( $disable_ga_wc ) {
if ( function_exists( ‘gdpr_cookie_is_accepted’ ) ) :
if ( ! gdpr_cookie_is_accepted( ‘statistic’ ) ) :
$disable_ga_wc = true;
endif;
endif;
return $disable_ga_wc;
}``
thank you
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘WooCommerce Google Analytics Integration integration’ is closed to new replies.