Current path: home/webdevt/www/wdp/wp-content/plugins/complianz-gdpr/integrations/plugins/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/complianz-gdpr/integrations
<?php
defined( 'ABSPATH' ) or die( "you do not have access to this page!" );
/**
* Make sure swatches is released from the cookie blocker.
* Can be used for other script ID's well. Copy/Paste/Rename
*/
function cmplz_whitelist_woo_variation( $category, $total_match, $found ) {
$string = 'woo-variation-swatches-js-extra'; //'string from inline script or source that should be whitelisted'
if ( $found && false !== strpos( $total_match, $string ) ) {
$category = 'functional';
}
return $category;
}
add_filter ( 'cmplz_service_category', 'cmplz_whitelist_woo_variation', 10 , 3 );