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!" );
/**
* Add blocklist tags
* @param array $tags
*
* @return array
*/
function cmplz_advanced_captcha_nocaptcha_script( $tags ) {
if (defined('WPCF7_VERSION') && version_compare(WPCF7_VERSION, 5.4, '>=')) return $tags;
if (cmplz_get_option('block_recaptcha_service') === 'yes'){
$tags[] = array(
'name' => 'advanced-nocaptcha-recaptcha',
'category' => 'marketing',
'placeholder' => 'google-recaptcha',
'urls' => array(
'google.com/recaptcha/api.js',
'var anr_captcha',
),
'enable_placeholder' => '1',
'placeholder_class' => 'anr_captcha_field_div',
'enable_dependency' => '1',
'dependency' => [
//'wait-for-this-script' => 'script-that-should-wait'
'google.com/recaptcha/api.js' => 'var anr_captcha',
],
);
}
return $tags;
}
add_filter( 'cmplz_known_script_tags', 'cmplz_advanced_captcha_nocaptcha_script' );
/**
* Add css
*/
function cmplz_advanced_captcha_nocaptcha_css() {
if (defined('WPCF7_VERSION') && version_compare(WPCF7_VERSION, 5.4, '>=')) return;
if (cmplz_get_option('block_recaptcha_service') === 'yes'){
?>
.anr_captcha_field .cmplz-blocked-content-container {
max-width: initial !important;
height: 80px !important;
margin-bottom: 20px;
}
@media only screen and (max-width: 400px) {
.anr_captcha_field .cmplz-blocked-content-container, {
height: 100px !important
}
}
.anr_captcha_field .cmplz-blocked-content-container .cmplz-blocked-content-notice{
max-width: initial;
padding: 7px;
}
<?php
}
}
add_action( 'cmplz_banner_css', 'cmplz_advanced_captcha_nocaptcha_css' );
/**
* Add services to the list of detected items, so it will get set as default, and will be added to the notice about it
*
* @param $services
*
* @return array
*/
function cmplz_advanced_captcha_nocaptcha_services( $services ) {
if (defined('WPCF7_VERSION') && version_compare(WPCF7_VERSION, 5.4, '>=')) return $services;
if ( ! in_array( 'google-recaptcha', $services ) ) {
$services[] = 'google-recaptcha';
}
return $services;
}
add_filter( 'cmplz_detected_services', 'cmplz_advanced_captcha_nocaptcha_services' );