Hi, no that is not possible. The only two tracking plugins we have are both Automattic built plugins: GA for Woocommerce and Google Listings and Ads. I bought Complianz because your article recommended it.
Only by adding this code snippet to functions.php could I change the consent status, but this defeats the whole purpose of Complianz.
add_filter( ‘woocommerce_ga_gtag_consent_modes’, function ( $consent_modes ) {
$consent_modes[] = array(
‘analytics_storage’ => ‘granted’,
‘region’ => array( ‘GB’ ), // United Kingdom
);
return $consent_modes;
} );
Complianz support have said in relation to your plugin:
“The issue is that when you introduce Google Consent Mode v2 to the mix, then it becomes incompatible. As I said, to add Consent Mode v2 parameters to your Google Tags, we would need to insert those Tags into your source code, not WooCommerce. So, in order to set up Consent Mode v2, you’d have to disable Google Tag insertions from other plugins like WooCommerce and instead do it solely through?Complianz. If you’d leave both insertions active, Google would still flag your domain for non Consent Mode compliance and not allow Google Analytics to work as it should, as you’d still have that WooCommerce GA script that isn’t using Consent Mode v2.??Perhaps you’d like to watch a video of one of our users about the entire Consent Mode v2 &?Complianz?situation to clarify any doubts you may have:?https://www.youtube.com/watch?si=iEcCHEHRMFN2B4X6&v=vhansLv2iC8&feature=youtu.be But I’m afraid that at this moment in time it is not guaranteed that you can insert Google Tags with other plugins and still comply with Consent Mode v2.”
I could privately provide access to our wp-admin if this helps?