forked from complianz/complianz-gdpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
1307 lines (1137 loc) · 73.7 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== Complianz - GDPR/CCPA Cookie Consent ===
Contributors: RogierLankhorst, aahulsebos, leonwimmenhoeve, paapst, markwolters, tomeijkelenkamp, hesseldejong, mujuonly, xantek, pierrotevrard, samu-dn, jarnovos
Donate link: https://paypal.me/complianz
Tags: GDPR, Cookie, Cookie Notice, DSGVO, CPRA, Consent, RGPD, LGPD, Privacy, PIPEDA, Cookie Policy, Opt-in
Requires at least: 4.9
License: GPL2
Requires PHP: 7.2
Tested up to: 6.1
Stable tag: 6.4.2
Configure your Cookie Banner, Cookie Consent and Cookie Policy with our Wizard and Cookie Scan. Supports GDPR, DSGVO, TTDSG, LGPD, POPIA, RGPD, CCPA/CPRA and PIPEDA.
== Description ==
Complianz is a GDPR/CCPA Cookie Consent plugin that supports GDPR, ePrivacy, DSGVO, TTDSG, LGPD, POPIA, APA, RGPD, CCPA/CPRA and PIPEDA with a conditional Cookie Notice and customized Cookie Policy based on the results of the built-in Cookie Scan.
https://www.youtube.com/watch?v=JJzOzNAd5Bw&ab_channel=ReallySimplePlugins
== Features ==
= Cookie Consent Notice =
* Configure a Cookie Notice for your specific region: European Union, United Kingdom, United States, Australia, South Africa, Brazil or Canada. Or use one Cookie Notice worldwide.
* Configure specific cookie consent per subregion, for example: European Union + TTDSG/DSGVO/CNIL or USA + specific states for CCPA/CPRA/CTDPA etc
* Cookie Consent and Conditional Cookie Notice with Custom CSS and Customizable Templates. WCAG Level AA and ADA Compliant.
* Banner Templates include: GDPR-friendly Cookie Wall - Accept/Dismiss - Consent per Category - Consent per Service
* Banner Templates also include; Dismiss on scroll, time on page or both based on legislation
* Cookie Banners and Legal Documents conform to WCAG 2.1 AA Accessibility Guidelines and ADA Compliance.
* No jQuery Dependency
= Consent Management =
* Automatically configures you website based on wizard questions, WordPress scans and dedicated service and plugin integrations.
* Blocks 3rd party cookies like Google Maps, Facebook, Instagram, AdSense, Hubspot, Recaptcha, Twitter, ActiveCampaign, and many more.
* Custom integrations for plugins, themes and services are automatically detected.
* Blocks iFrames, like YouTube, Vimeo, Dailymotion embedded videos and Social iFrames e.g. Instagram, Facebook et al.
* Shows placeholders for blocked iFrames. Stills from videos and individual placeholders per (social) service.
* Script Center to control scripts, iFrames and plugins per category or service. With dependency functionality and placeholders.
* Proof of Consent: User consent registration that respects the GDPR data minimization guideline.
* Periodical Cookie Scan for changes in Cookies, Plugins and 3rd Party services.
* Automatically detects if you need a Cookie Notice (also called a Cookie Banner or Pop-Up).
* Automatically anonymizes personal data for integrated statistics tools if needed.
= Privacy Laws & Guidelines =
* Ready for GDPR, ePrivacy AVG, RGPD, LGPD, DSGVO, CNIL, PECR, UK DPA, UK GDPR, CCPA, COPPA, PIPEDA, CASL, POPIA, Privacy Act 1988, Australian Privacy Principles, The “Marco Civil” and the Brazilian General Data Protection Law.
* Differentiate between GDPR, ePrivacy and DSGVO/CNIL or between CCPA/DNSMPI and NRS 603A, if needed.
* We closely follow the latest developments in the ePrivacy regulation, the proposed Cookie Law for the European Union, and other legislation world-wide.
= Legal Documents =
* A Cookie Policy; Generated by you with an easy wizard, drafted by an IT Law Firm.
* Do Not Sell My Personal Information: DNSMPI Page for CCPA/CPRA - if required. (Now called Opt-out Preferences.)
* Terms and Conditions are available in a separate plugin: [Complianz – Terms and Conditions](https://wordpress.org/plugins/complianz-terms-conditions/)
= Integrations =
* Detected Cookie Data is prefilled from cookiedatabase.org, with clear and transparent cookie descriptions, which are continuously updated.
* Integrated with WordPress Privacy features. Export and erase personal data from our dashboard.
* Implementation of Google Tag Manager, Google Analytics, Matomo, Matomo Tag Manager, Clicky, Yandex, Jetpack and Burst Statistics
* Categorize your Cookies with Tag Manager or our Script Center, if needed.
* Integration with the [WP Consent API](https://wpconsentapi.org/)
* Integrates seamlessly with Gutenberg, Elementor, Divi, Forminator, WPBakery, Monsterinsights, GADWP, Beehive, WPForms, Gravity Forms, HappyForms, Contact Form 7 <5.4 (CF7), Woocommerce, Easy Digital Downloads, WP Google Maps, Google Maps Widget, Local Google Fonts, CAOS | Host Google Analytics Locally and other popular plugins.
* Tested with popular themes en page builders.
* Gutenberg Blocks enabled.
== Support ==
Complianz offers full support on the WordPress.org [Forum](https://wordpress.org/support/plugin/complianz-gdpr/). Before starting a new thread, please check available documentation and other support threads. Leave a clear and concise description of your issue, and we will respond as soon as possible.
== Useful Links ==
* [Support Forum](https://wordpress.org/support/plugin/complianz-gdpr/)
* [Github](https://github.com/Really-Simple-Plugins/complianz-gdpr/)
* [MU Plugins](https://github.com/Really-Simple-Plugins/complianz-integrations)
* [Documentation](https://complianz.io/docs/)
* [Developer's Guide](https://complianz.io/developers-guide-for-third-party-integrations/)
* [Wizard Manual](https://complianz.io/manual/)
* [Legal Definitions](https://complianz.io/definitions/)
* [Translate Complianz](https://translate.wordpress.org/projects/wp-plugins/complianz-gdpr/)
== Premium Features ==
Complianz offers a Full Privacy Suite for WordPress on [Complianz.io](https://complianz.io) with even more features:
= Cookie Consent Notice =
* Improve conversion with A/B Testing: which cookie banner has the best consent ratio? Run tests and measure what works best for your site.
= Consent Management =
* Records of Consent: Keep record of your consent management changes and user's consent registration. Integrates with Proof of Consent
* Respects the Do Not Track settings and Global Privacy Controls in end-users browsers.
* Geo IP Cookie Consent: Cookie Consent is different everywhere. Show the correct Cookie Notice based on IP location, but only if a banner is needed.
* Google Consent Mode - Use Consent Mode by Google with Google Tag Manager or Google Analytics. No further set-up needed.
* Integration with TCF v2.0. An IAB Europe Consent Framework for Publishers. Registered CMP ID: 332
* Data Request Forms and Registration
= Privacy Laws & Guidelines =
Simultaneously select USA, Canada, United Kingdom, Australie, South Africa, Brazil and the EU as targeted regions with conditional Consent and dedicated Cookie Banners.
* Support for GDPR / ePrivacy - European Union with Extension for Switzerland.
* Support for USA / CCPA/CPRA/CPA/CTDPA/NRS 603A/UCPA/CDPA
* Support for UK-GDPR / PECR and ICO Guidelines - United Kingdom.
* Support for PIPEDA and CASL - Canada.
* Support for Privacy Act 1988 & Australian Privacy Principles
* Support for POPIA, the South African Protection of Personal Information Act
* Supports The “Marco Civil” and the Brazilian General Data Protection Law (LGPD)
= Legal Documents =
* Privacy statements (EU, CA, UK, AU, ZA, BR & USA).
* Cookie policy (EU, UK, CA, AU, ZA, BR & USA).
* Impressum (Germany & Austria) & Imprint for world wide use.
* Disclaimer
* Terms & Conditions Integration
* Processing agreements (EU, UK, CA, AU, ZA, BR & USA).
* Dataleak reporting tools (EU, UK, CA, AU, ZA, BR & USA).
* Supports CCPA Consent and Legal documents.
* COPPA ready with Children's Privacy Policy (USA)
* Children's Privacy Policy (UK,CA & AU)
= Support & Updates =
* Premium Support from our amazing team.
* Premium updates, new languages, features, regions and more to create the Ultimate Privacy Suite for WordPress.
== About Complianz ==
Check out other plugins developed by Really Simple Plugins as well: [Really Simple SSL](https://wordpress.org/plugins/really-simple-ssl/)
Complianz is on [GitHub](https://github.com/Really-Simple-Plugins/complianz-gdpr) as well!
IMPORTANT! Complianz | GDPR/CCPA Cookie Consent can help you meet compliance requirements, but the user must ensure that all requirements are met.
Complianz needs to connect with Cookiedatabase.org to collect and synchronize with the most recent descriptions for cookies and related services. This will ensure that your cookie policy always contains the most up to date cookie descriptions. Cookiedatabase.org is being operated by Complianz BV and the offered service can be used for free within our plugin under the following [Terms of Use](https://creativecommons.org/licenses/by-nc-nd/4.0/).
[Contact](https://complianz.io/support/) us if you have any questions, issues, or suggestions. Complianz | GDPR/CCPA Cookie Consent is developed by [Complianz B.V.](https://complianz.io). Leave your feature requests [here]().
== Installation ==
* Go to “Plugins” in your WordPress Dashboard, and click “Add new”.
* Click “Upload”, and select the downloaded zip file.
* Activate your new plugin.
* Use our tour to get familar with Complianz.
== Frequently Asked Questions ==
= Knowledgebase =
Complianz maintains a continuously growing knowledgebase about GDPR, including subregions e.g. DSGVO and CNIL, CCPA, PIPEDA, COPPA, POPIA & other specific laws on [complianz.io](https://complianz.io)
= Is my website GDPR, COPPA, CCPA, DSGVO, TTDSG, AVG, CNIL, UK-GDPR, PECR, CASL, LGPD, POPIA and/or PIPEDA compliant with this plugin? =
We cannot guarantee compliance for your website. A correct configuration of this plugin by a website administrator is always required.
= When do I need a Cookie Notice? =
Complianz | GDPR/CCPA Cookie Consent will determine this automatically based on the laws of the region or regions, where most of your visitors come from.
Regarding CCPA/CPRA, you always have to show which cookies you are using but there's no obligation in asking consent.
= Do I always need a consent checkbox on contact forms? =
Not always. The Complianz Privacy Suite Premium plugin can determine if you need this, based on your answers in the wizard. It mainly depends on the type of information and the reason why your visitor use the contact form.
= What is the GDPR? =
The GDPR is a regulation within the EU law on privacy and data protection for any citizen within the EU and European Economic Area. It aims primarily on giving control to individuals over their personal data. The GDPR also addresses the export of personal data outside the EU.
= What is the CCPA? =
The CCPA (Californian Privacy Act) is a law set up by the Californian government. The law is adjudged to be one of the toughest and farthest-reaching consumer privacy laws in the US. It is mostly focused on giving insights on what personal data business gather and how to protect and control these personal data.
= What is COPPA? =
The Children’s Online Privacy Protection Act (COPPA) is a law designed to protect the online privacy of children under 13. It was set up in the 1990's and states that website owners have to meet certain requirements regarding visitors with the age under 13.
= What are PECR & UK-GDPR? =
PECR (UK) covers the use of cookies and similar technologies for storing information and accessing information stored, on a user’s equipment such as a computer or mobile device.
= What are the Privacy Act 1988 & Australian Privacy Principles =
To comply with the Australian privacy laws a website operator should present a cookie policy and/or a privacy notice before or, if that is not practicable, as soon as practicable after, your website collects personal information about an individual.
= What are PIPEDA & CASL? =
Canada’s Anti-Spam Legislation (CASL) and Personal Information Protection and Electronic Documents Act (PIPEDA) require a website operator to obtain consent, either implied or express consent with a dedicated cookie statement.
= What POPIA (POPI Act)? =
POPIA is the acronym for the South African PROTECTION OF PERSONAL INFORMATION ACT. Similar to the GDPR, the UK-GDPR, and the Brasilian LGPD, it promotes the protection of personal information processed by public and private bodies, regulates the cross-border flow of personal information, and outlines the rights of data subjects.
= What are “Marco Civil” and the Brazilian General Data Protection Law (LGPD)? =
The Brazilian General Data Protection Law is similar to the GDPR, the UK-GDPR it promotes the protection of personal information processed by public and private bodies, regulates the cross-border flow of personal information, and outlines the rights of data subjects. The Marco Civil is the Brazilian name of the Brazilian Civil Rights Framework for the Internet a counterpart to European's "ePrivacy", although not similar.
= Can I create a Cookie Wall with this plugin? =
With some custom CSS this is possible, but we do not consider a cookie wall to be GDPR compliant, so it's not actively supported. We do, however, have the option to create a Soft Cookie Wall. Which blocks interaction with the website, but dismissing remains a possibility.
== Changelog ==
= 6.4.2 =
* Fix: disable cookie banner option in wizard didn't load the complianz.js scripts, causing placeholders not to work when activated.
* Fix: After switching to unlinked status in a legal document, purpose paragraph got dropped
* Fix: not all categories within services showing in cookie policy overview
* Fix: isset check on get_field_type function, props @moxymore
* Fix: not translatable VAT ID string
* Fix: With Global Privacy Control or Do Not Track enabled, and the user accepting an embedded service, the service was blocked again after a pageload.
* Improvement: allow custom directory for cookie banner css generation
* Improvement: catch open basedir restriction
* Improvement: catch not existing accept button during initial cookie scan (no banner active yet)
* Improvement: function cmplz_has_consent() in 'other' region returned false when no cookies present, while it should return true in that case.
* New: Buttonizer integration
* New: hCatpcha for WordPress
= 6.4.1 =
* Improvement: do not copy over async attribute to prevent issues re-initializing scripts in some setups
* Improvement: get_cookie() function performance, props @lucastello
* Improvement: add space behind contact details on policy
* Improvement: add our own 'manage_privacy' capability, as the wordpress core manage_privacy_options is not implemented consistently with other capabilities
* Improvement: catch not set array class-document.php 1820
* Improvement: hide blocked iframes until they're consented to, for better UX
* Improvement: PHP 8.2 compatibility
* Improvement: export datarequests on symlinked folder setups (BASE_PATH -> ABSPATH)
* Fix: links to processing agreement create page broken
* Fix: Divi Recaptcha support
* Fix: WP Go Maps Pro update
* Fix: cosmetic change: cmplz_functional should always be allow, props @jidwictut9
* Fix: when editing consent in unsynced mode in Gutenberg, content went missing because of automatically wrapping with divs by gutenberg and missing key props
* New: Agile Store Locator integration
* New: Omnisend Connect integration
= 6.4.0 =
* Fix: function name error in microsoft ads integrations, props @mustafauysal
* Fix: GPC & DNT in opt out regions not respected, props @ahegyes
* Improvement: conditional scroll into view on consent area shortcode, props @falkemediawy
* Improvement: MPDF update, props @sviluppomania
* Improvement: catch CURL errors because of local SSL issues, add to system status
* Improvement: return # for not existing page id in case of generated docs by complianz, but not actually generated
* Improvement: Fire load event in divi integration after consent
= 6.3.9 =
* Brought version in sync with premium version
* Improvement: Add classes to address details
* Improvement: auto installer for Really Simple SSL multisite compatible
* Improvement: add filter to allow filtering data-request email recipient 'cmplz_datarequest_email'
* Improvement: translatable URLs in polylang
* New: Microsoft Ads/Microsoft Clarity integration
* Fix: some scripts not executing properly because of copying data-service & data-category attributes props @sophiaknows, @hamil1
* Fix: new added query added to cookie block exclude to ensure Avada live builder works, props @franck_b, @markusand
= 6.3.6.1 =
* Fix: unsetting non existing array key in upgrade
= 6.3.6 =
* Fix: translatable strings, props @bonaldi
* Fix: only allow saving script center
* Fix: error on multisite upgrade
* Fix: catch error when multiple fonts plugins are installed at the same time, props @rkwp
* Fix: catch missing menu for user roles without manage privacy capability, props @nicmare, @omniafausta
* Fix: load cookiebanner css on cookie policy, to ensure hiding of obsolete categories, props @troglos
* Fix: cookieshredder on setInterval instead of setTimeout, to ensure continuous cleaning, props @path0
* Fix: set a legal document transient if no Complianz shortcodes are used at all
* New: Adobe Typekit integration
* New: Divi Google Maps integration, props @satzundmore
* Improvement: move script sources to data attribute, to prevent Safari from preloading
* Improvement: consistency in use of capabilities, changed all caps to manage_privacy
* Improvement: Allow é in google maps address, props @nicmare
* Improvement: performance improvements, props @paaljoachim
* Improvement: copy data attributes in script when enabling scripts, props @thebrandonallen
= 6.3.5 =
* Fix: Change legal document page name on generate, not only on update
* Fix: remove error_log in proof of consent
* Fix: prevent duplicate document status field when Terms & conditions is activated
* Fix: re-enable caching for cookie list when cookie shredder is enabled, props @mkarena
* Fix: uses_statistics function now also checks if vimeo is used, which is a service using statistics cookies
* Improvement: drop Mappress integration, as Mappress has implemented the integration on their end
* Improvement: Extended Google Fonts support
* Improvement: Explicitly let users enable the cookie banner and cookie blocker
* Improvement: allow for linebreak in blocked scripts, which fixes ExactMetrics integration
* Improvement: when checkbox is inserted in Gravity Forms, but the wizard is not completed yet, the privacy statement url will now be updated on the last step of the wizard
* WCAG: don't add cookie banner html to cookie policy page, to prevent duplicate id issues
* WCAG: add labels with screen-reader-text class instead of hiding them with display:none, props @sophieweb
* New: Uncode maps integration
* New: YotuWP integration
= 6.3.4 =
* New: Google Maps colibri integration
* New: WP Google Maps OpenLayers Integration
* New: Content Views Plugin integration to allow for ajax loaded content
* New: ActiveCampaign
* Improvement: some optimizations to make the cookie shredder perform better
* Improvement: extend translation options for cookies that are not synced with cookiedatabase when using polylang
* Improvement: use custom thrive hook in certain custom thrive implementations
* Improvement: also copy 'owndomain' property when creating a cookie in a new language
* Improvement: regenerate proof of consent pdf on plugin update
* Improvement: do not offer checkbox on cookie policy for Google Fonts
* Improvement: extend Matomo Tag Manager integration
* Improvement: for created directories, set permissions default to 755
* Improvement: add filter cmplz_banner_html to manage consent area as well, to offer consistent editing of the html
* Improvement: also change banner status with custom revoke button on status change
* Improvement: force redirect in firefox to reload with full consent withdrawal, as firefox seems to cache loaded scripts
* Improvement: bundle integration activation notices
* Improvement: Updated Google Maps Easy integration
* Fix: escape translation file string in case of personalized ads option, props @saggre
* Fix: Incorrect sorting of Proof of Consent files prevented them from showing up in the list
* Fix: update qTranslate integration to allow for banner fields with $field['text'] strings, props @sviluppomania
* Fix: cookie policy UK not replacing the cookiedatabase.org link because of too many arguments in sprintf
= 6.3.3 =
* Improvement: conditionally offer link to create menu page
* Improvement: remove unnecessary translatable strings from policy UK and AU
* Improvement: remove unnecessary slash in matomo script
* Improvement: email obfuscation when line break in the email prevented reversal of email
* Improvement: block activation of plugin below php version 7.2
* Improvement: dynamically adjust banner text based on advertising settings
* Improvement: no script tags when there's no actual script to add for statistics
* New: WordPress store locator integration
* New: Presto Player integration
* Fix: changes in manage consent button option causing issue in AMP integration, props @tarbyonline
* Fix: document options in region redirect menu not correctly filtered
* Fix: prevent error in system status when wizard not started yet
* Fix: NOT EMPTY condition on imprint statement
* Fix: no javascript error report unless script debug enabled
* Fix: update qTranslate integration to allow for banner fields with $field['text'] strings, props @sviluppomania
* Fix: cookie policy UK not replacing the cookiedatabase.org link because of too many arguments in sprintf
= 6.3.2.1 =
* Fix: catch empty array during cookie list generation for cookie shredder/consent per service
* Fix: shortcode pattern for Gutenberg shortcode recognition didn't include first character
* Fix: "NOT EMPTY" condition wasn't validated correctly, props @anil-sardemann
= 6.3.2 =
* Improvement: some small dashboard changes
* Improvement: Prevent duplicate cookies in consent per service array
* Improvement: caching improvements
* Improvement: sharing of data multicheckbox with "more options" button
* Improvement: stricter shortcode pattern for gutenberg prevents non intentional redirect to english version when shortcode contains custom class with 'us' string, props @sami54000
* Improvement: stricter regex pattern for youtube in elementor, preventing issues when video is self hosted, props @hatchjaw
* Improvement: extend custom css examples
* Improvement: catch situation where user selects that social media are used, but does not select any social media
* Improvement: drop defer from matomo js, as it is deprecated in favor of async
* Fix: changes in manage consent button option causing issue in AMP integration, props @tarbyonline
* Fix: typo in cookie policy
* Fix: Woocommerce analytics integration icw Stripe, props @xbaeza
* Fix: string change: for placeholders, you can now use a DIV class or an ID
= 6.3.1 =
* Improvement: Catch php 5.6 error for geo ip
* Improvement: space after missing p tag removed
* Improvement: Consent per Service banner reappearing when making changes in service consent on the cookie policy
* Improvement: Burst integration not compatible with caching/defer
* Improvement: option to override the region by passing a parameter in the URL.
* Improvement: UK legal docs text improvements
= 6.3.0 =
* Improvement: United States update
* Improvement: added filter cmplz_detected_cookies to enable directly adding cookies to detection
* Improvement: add languages by qTranslate to languages list for cookie translations, props @pmoh
* Improvement: more options for the manage consent button
* Improvement: updated Brazilian contact information ANPD
* Improvement: date localization in cmplz_localize_date function props @leoay
* Improvement: preserve uppercase in service names
* Improvement: disable autoload for back-end options, lowering front-end memory usage
* Improvement: PHP 8.1 compatibility
* Improvement: Ghostery conflict in cookie banner editor
* Improvement: Skip statistics wizard step when no statistics selected
* Improvement: Drop AW script after switch from google-analytics to other statistics tool
* New: add div placeholder by id, not just class
* New: Twitch integration
* Fix: cmplz-revoke-link shortcode not working due to changed classes, props @rana-rene
* Fix: minification error due to minifier stripping of '%', props @wpjamg
* Fix: clear pdf generation tmp directory after usage, props @kernvy
* Fix: [video] shortcode integration compatibility with Bold Builder + primavera
* New: updated minimum PHP version to 7.2
= 6.2.4 =
* Improvement: Get ready for cookieless tracking in Burst Statistics/Analytics
* Improvement: shepherd css class
* Improvement: move ace to vendor dir, to prevent translation scan, props @tobifjellner
* Improvement: No data requests notice if no datarequests available
* Improvement: Elementor video playlist integration
* Improvement: less option updates in integrations
* Improvement: new filter for compatibility with qTranslate
* Improvement: drop text/javascript from scripts, as it is default
* Improvement: no defer on inline scripts, props @Lofesa
= 6.2.0 =
* New: Beaver Builder Power Pack
* New: Superfly integration
* Improvement: Support for Switzerland
* Improvement: change A tag of close button in banner to div, for WCAG
* Improvement: add maps.google.de to blocklist
* Improvement: wp bakery front end editor exclude cookie banner
* Fix: Guide skips steps
* Fix: Livetube fatal error props @ltglobal
* Fix: British word changed to US default
* Fix: php error php 8 when generating POC
* Fix: Compatibility with Menu Block editor for legal pages
* Fix: FitVids not activating on category_enabled hook, props @goretex34
= 6.1.6.1 =
* Fix: usage of dropped constants in GTM4WP causing fatal error, props @shecky
= 6.1.6 =
* Fix: elementor fix for inline css, matching regex made more specific
* Fix: catch serialized string in PolyLang
* Fix: allow string translations in Polylang, except for purposes. Prevent syncing translatable strings across languages. props @bosendorfer
* New: WP adverts Google Maps integration, props @titusb
* Improvement: Advanced Ads Integration
* Improvement: prevent weird Avada bug triggering save_post hook on front-end, causing issues with Woocommerce PayPal integration, causing order key stripped
* Improvement: elementor fix for inline css, matching regex made more specific
* Improvement: extend is_pagebuilder_preview function with more Elementor $_GET variables
* Improvement: change vimeo purpose to statistics, props @alfi_-1
* Improvement: Facebook Video Embed Elementor integration
* Improvement: Exclude WooCommerce products from scan, preventing large nr of not relevant cookies to get detected, props @dwnl
* Improvement: AMP default hidden in inline amp css
* Improvement: add support for legacy WordPress Video shortcode, still used in siteorigin pagebuilder, props @stclaus
= 6.1.5 =
* Fix: 'NOT' condition not loading correctly, props @rickvanleeuwen
= 6.1.4 =
* Improvement: integration which fixes bug in Thrive theme which removes other plugin's inline css
* Improvement: Use category as fallback for service consent
* Improvement: legal update to imprint/impressum
* Improvement: adjustments to EU configuration to allow for Switzerland as region
* Improvement: add Burst Statistics to suggested plugins for privacy friendly statistics
* Improvement: improve caching mechanism to ensure that on even for persistent cached database queries, these get updated when necessary
* Improvement: new event for integrations 'cmplz_status_change_service'
* Improvement: when checking callback function, also check for prefix
* Improvement: user registration pro
* Fix: reCaptcha integration in combination with consent per service, props @esby
* Fix: Burst Statistics integration could cause duplicate hits in some situations
* Fix: Placeholders for Elementor Facebook and Twitter widget, and allow for Consent Per Service
* Fix: Consent per service icw Elementor Youtube implementation
* Fix: US revoke statistics with forceEnableStats
* Fix: drop Elementor Pro Cookie Banner support
* Fix: drop aria-checked=true for input type=checkbox, props @lofesa
* Fix: Uncaught TypeError: service is null when Elementor integration used in combination with Cookie Shredder/consent per service
* Fix: duplicate id in back-end radio field
= 6.1.3 =
* Fix: Consent Mode consenting to marketing when preferences was accepted
* Fix: Burst Statistics integration triggering twice
= 6.1.2 =
* New: Matomo Tag Manager / WP Piwik
* Improvement: editable "I Agree" button for consent per service/Cookie Shredder
* Improvement: cache get and cache set on database queries on the cookie policy and cookie shredder, removing duplicate queries, props David
* Improvement: export banner settings option
* Improvement: remove space after empty text, causing unnecessary paragraphs
* Improvement: use close button with enter, props @benqwerty
* Improvement: limit banner image size to banner editor only, props @bkwineper
* Improvement: lazy load integration for WP Rocket and LazyLoader plugin, props @Lofesa
* Improvement: change divs in banner to spans, props @kbelimpassakis
* Improvement: move inline css to head, props @kbelimpassakis
* Improvement: lock css file on css generation in banner
* Improvement: clean up blocked scripts after activation, props @puregraphx
* Improvement: run load_plugin_textdomain for Loco Translate compatibility props @peterforensys
* Improvement: upgrade tables for older versions
* Fix: Woocommerce Google Analytics - Enhanced Ecommerce integration
* Fix: localhost reference in default css, props @toxicum
* Fix: saving of border radius of 0 in cookie banner
* Fix: save/enable on integrations slider
* Fix: dismiss Elementor pro activated notice
* Fix: fixed accidentally re-activating deactivated services on cookiedatabase.org sync
= 6.1.0.1 =
* Fix: Recaptcha integration issue, props @delanthear @peopleinside @soydelia for reporting the issue
= 6.1.0 =
* New: Consent per Service in combination with CookieShredder.
* New: Matomo cookieless tracking
* CSS: simplify scrollbar in dashboard css
* CSS: drop overflow: auto on header
* CSS: drop min-width 300px below 350px
* CSS: set bottom banner to bottom on mobile as well
* CSS: padding on links in legal pages
* CSS: override theme flex property on buttons in banner
* Improvement: hide not required fields if no documents are selected, props @paaljoachim
* Improvement: allow for time zone offset when saving consent in records of consent
* Improvement: keep categories in sync https://github.com/Really-Simple-Plugins/complianz-gdpr/issues/324 props @antonellon
* Improvement: Link to permalink settings when notice is shown
* Improvement: DNT feedback string improved
* Improvement: drop fieldname class from fields in settings page, to prevent conflicts
* Improvement: CloudFlare CFCustom geo ip option
* Improvement: new options for GEO ip
* Improvement: allow saving of empty script center blocks
* Improvement: on switch to TCF banner, regenerate the banner css
* Improvement: obfuscate email address also with css
* Improvement: remove condition on categories settings in cookie banner setting, to allow for manage consent area configuration in cookie policy
* Improvement: catch Tatsu pagebuilder preview
* Improvement: auto enable GEO ip if records of consent enabled
* Improvement: disable hide cookiebanner option on legal pages
* Improvement: added font size option
* Improvement: responsiveness wizard
* Improvement: cookiebanner required feedback
* Improvement: new option to disable width auto correction
* Improvement: ratio option for placeholders on openstreetmap
* Improvement: drop title element from svg in banner, props @alexbosch
* Improvement: p elements on all paragraphs in legal documents
* Improvement: added Flexible Maps integration
* Improvement: add toggle to hide the legal document links on the banner
* Fix: Novo Maps integration
* Fix: domains with 'type' in the url could not load the css file props @nimdaweb
* Fix: catch not set enable dependency key
* Fix: preview cookiebanner not always correctly updated.
* Fix: paging in integrations
* Fix: remove <title> tag from close button. props @doubleyourbrand
* Fix: only reload on a deny action if marketing was accepted props @dasisdormax
* Fix: allow mappress en google maps enabled at the same time
* Fix: allow quotes in custom css
* Fix: export filtered dataset from Records of Consent
* Fix: in cmplz_fire_categories, declare event as local variable, fixing theme conflicts with global declared variables props @jrt341 and @skydivider
* Fix: fix revert to defaults for text_checkbox booleans @puregraphx
* Fix: Due to change from google-analytics.js to gtag.js, anonymizeIp has changed to anonymize_ip, props @ccalislar35
* Fix: On sync, include services without cookies, even if completed
= 6.0.7 =
* Changed database upgrade order
* Improvement: catch Tatsu pagebuilder preview
* Fix: only reload on a deny action if marketing was accepted props @dasisdormax
* Fix: allow mappress en google maps enabled at the same time
* Fix: allow quotes in custom css
* Improvement: allow saving of empty script center blocks
* Improvement: obfuscate email address also with css
* Improvement: remove condition on categories settings in cookie banner setting, to allow for manage consent area configuration in cookie policy
= 6.0.6 =
* Bumped tested up to
= 6.0.5 =
* Improvement: auto enable migrate.js when upgrading from <6 to 6.0 and up
= 6.0.4 =
* Fix: allow for configuration which could cause empty buttons.
* Fix: anonymous statistics description toggle showing when field is disabled props @kaznim, @puregraphx.
= 6.0.3 =
* Improvement: when some updates were skipped, old varchar columns could cause row size too large issues, causing banner settings not to get saved.
* Improvement: if obsolete categories type 'hidden' still was in use, force override to 'view-preferences'
* Improvement: fallback to default css if custom generated css wasn't available due to file write permissions or skipped upgrade
* Fix: When text fields are empty, like the deny button, fallback to default value.
= 6.0.2 =
* Fix: catch double upgrade issues
= 6.0.1 =
* CSS: to prevent theme css conflicts, reset values for: display block op label:after, summary, line-height buttons, margin on manage consent button
* Fix: catch PHP 8.1 errors
* Improvement: catch not writable uploads folder
* Fix: auto adjust banner width code "walking"
* Improvement: allow custom privacy statement and impressum documents on banner in free version
* Fix: auto adjust banner width code "walking"
* Fix: hidden category type enabled on wizard changes
* Fix: unescape texts in banner links
= 6.0.0 =
* Important: Cookie Banner has changed significantly. Please check your Cookie Banner after updating.
* Improvement: allow both consent per category and consent per service on the custom consent area shortcode
* Improvement: show summary of detected cookies instead of full list on the scan page
* Improvement: new Script Center, with option to add dependencies and placeholders
* Improvement: complete rewrite of the cookiebanner code, faster, modular, easily customizable.
* Improvement: removed jquery as dependency from the cookiebanner javascript
* Improvement: auto consent for visits from bots
* Improvement: allow both consent per category and consent per service on the custom consent area shortcode
* Improvement: show summary of detected cookies instead of full list on the scan page
* Improvement: drop h1 and h2 from banner to prevent styling issues with styles from overriding themes
* Improvement: Oxygen builder support
* Improvement: add more info to system status
* Improvement: Gtag does not need anonymize ip, as this is the default
* Improvement: company country in impressum
* Improvement: cache queries for front-end to prevent duplicate queries
* Fix: update Pixel your site integration to 6.0 structure
* Fix: link for white listing documentation, props @scheinercc
* Fix: Open StreetMaps / OSM plugin integration
* Fix: updated all statistics integrations
* Fix: WP Google Maps integration
* Fix: statistics consent when the questions "do you want to ask consent for statistics" has been answered with yes
* Fix: new array structure for cookiebanner settings causing error with translations.
* Fix: catastrophic backtracking with regex on iframes that do not contain a URL, props @ajoah https://github.com/Really-Simple-Plugins/complianz-gdpr/issues/320
* Fix: WP Google Maps integration
* Fix: statistics consent when the questions "do you want to ask consent for statistics" has been answered with yes
* Fix: cmplz-document class on body when soft cookie wall was enabled
* Fix: {url} links detected by automatic tools
* Fix: css fix: limit category classes to banner only
* Fix: separate cookies with same name and different services in cookie list (Facebook/Instagram)
= 5.5.2 =
* Fix: regex pattern in placeholder code should allow for linebreaks props @ajoah
* Fix: on multisite, when the settings "set cookies on root" is used, the rt prefix should not be used.
* Fix: duplicate word "telephone" in Impressum/Imprint
* Fix: load google analytics also when banner is not required
= 5.5.1 =
* Fix: auto update disabled for other plugins
= 5.5.0 =
* New: Placeholder themes and customization options
* New: Google Consent Mode for Google Tag Manager and GTAG.js
* Improvement: Animate task dismissal
* Improvement: Cookiedatabase optin to optout
* Improvement: prepare update notice for 6.0
* Improvement: new filter 'cmplz_cookiescan_post_types' for posttypes in cookiescan
* Improvement: sharing of data section from different regions merged
* Improvement: line break in legal documents after publish/checked date
* Fix: Terms & Conditions recommendation not showing
* Fix: automatic redirect to English for native English docs
= 5.4.0 =
* New: Brazil
* New: WP Store locator maps integration
* Improvement: some string changes
* Improvement: save feedback
* New: WCAG option on the admin
* New: cmplz_choice cookie also available without a/b testing or records of consent
* Fix: restore youtube-nocookie url to be recognized as URL for YouTube placeholders
* Fix: allow marketing cookies on accept deny, props @klous-1
= 5.3.0.1 =
* Fix: anonymizeip double quote in gtag.js
= 5.3.0 =
* Improvement: textual changes in cookie policy
* Improvement: save selected setting in localstorage for dropdowns in dashboard
* Improvement: change retention into expiration
* Improvement: better privacy policy link description for Complianz
* Improvement: privacy friendly analytics feedback in DE
* Improvement: samesite and secure cookies for Google Analytics and gtag.js
* Improvement: daily check for free translation files, and admin notice if free is not deleted
* Improvement: notice about conflicting cookie banner plugins
* Improvement: append banner to end of body element, to improve LCP
* Improvement: linkedin placeholder
* Fix: no integration notice when WP Google Maps active
* Fix: GTM categories not included in A/B tests
* Fix: extend core WP privacy annex
* Improvement: correct Elementor css causing styling issues on Complianz pages.
* New: Imprint
* Fix: initialize the __tcfapi() and postmessage functionality
* Improvement: several changes to the way TCF is handled
* Improvement: do not autoload class with class_exists check in cmplz_uses_gutenberg() function props @knomepasi
* New: Meks Easy Maps
* Fix: keep cookie and service lists in sync across languages when new languages are added.
* Fix: on the root website of a multisite setup accept all did not enable statistics
* New: Avada integration
= 5.2.6 =
* Fix: Sync services in multilanguage environment
* Improvement: prevent naming conflicts with custom posttypes when region redirecting by adding a prefix
* Fix: consent area required a cookiename change on multisite environments because of rt_ cookie prefix
= 5.2.5 =
* Fix: placeholder detection used wrong key, resulting in default placeholder
= 5.2.4 =
* Fix: svn not picking up new version in tags folder
= 5.2.3 =
* Fix: text domain correction
* Fix: min-width upload button
* Fix: in subdirectory installations, the find_wordpress_basepath function could not find the wp installation, props @ianpegg
* Improvement: re-structured services detection
* Improvement: drop TGM integration
* Improvement: flags for multiple regions
* TCF/IAB: some changes to keep the banner and cookie policy compliant with the IAB requirements
* Improvement: enable auto updates
= 5.2.2 =
* Fix: When choosing anonymous statistics from a not supported statistics type, the wizard forced configuration by Complianz.
= 5.2.1 =
* Fix: arguments error in notice
= 5.2.0 =
* New: TikTok integration
* New: South Africa POPIA support
* Fix: On multisite, root/main site cookies get different prefix, to prevent browser from getting confused about cookies on root and subpaths.
* Fix: Monsterinsights integration causing two pageviews
* Fix: Restore ajax loaded content blocker option, which was not following the setting's input
* Improvement: reset padding bottom for iframes during blocked status where responsiveness is handled with a padding-bottom 56%.
* Improvement: Detect Google Maps integration, and show notice about possible solution
* Improvement: Disable ACF integration when any of the other Google Maps integrations is detected
= 5.1.0 =
* Fix: allow for German Ringel S in Google Maps addresses
* New: Privacy Act 1988 Australia
* Fix: miscelaneous cookies without information in another language defaulted to the wrong translation
* Improvement: changed "Analytical" to "statistical".
* Fix: terminology in US/CA documents "to citizens and legal permanent residents of" instead of "to citizens of"
* Fix: explicitly ask consent in some EU regions question restored
* New: Pixel your Site Pro - and Add-ons
* Fix: Sensitive data question conditions under Security & Consent
= 5.0.3 =
* Improvement: new purposes for EU/UK
* Improvement: switch consent area order in cookie policies
* Fix: Elementor integration after reload
* New: Variation swatches for Woocommerce integration
* Improvement: show "hide cookie banner" metabox only on public post types
= 5.0.2 =
* Improvement: switch consent area in cookie policies
* Fix: Elementor integration after reload
* New: Variation swatches for Woocommerce integration
= 5.0.1 =
* Fix: Exclude RSS feed from cookie blocker.
* CSS: save button to primary on license
* Improvement: tips & tricks not translatable
* Fix: CSS styles for cookies shortcode
* Fix: since 5.0 UK could not set the categories type separately
* Fix: preview of categories automatically hidden after timeout
* Fix: upgrade integrations notices to 5.0 style
* Improvement: when cookie banner isn't necessary, show "open" notice instead of "completed"
* Fix: on duplicate cookies cleanup, do not delete cookies when from different services
* Fix: Processing field for 'other' option, linked textfield wasn't shown when selected
* Fix: feedback on settings saved responsive and multilanguage proof
* Improvement: change varchar fields in cookiebanner table to text, to preven max rowsize warnings on some installations.
= 5.0.0 =
* New: Animations/Customizations for the Cookie Banner
* New: Integrations for 10+ plugins and services
* Improvement: User Interface
* Improvement: WCAG on policies
* Improvement: Adjustments for CNIL Guidelines
* Improvement: Elementor integration improved
* Improvement: Integration with Terms & Conditions
= 4.9.12 =
* Legal: ending delimiter in clicky recognition regex
= 4.9.11 =
* Legal: Do Not Sell My Personal information form moved up to top of policy in accordance with recent changes
* Fix: Elementor integration firing init, causing issues with hamburger menu
* New: Clicky integration
* New: feedback for AMP/no javascript
* Fix: lanuage when requesting over rest-api with polylang
= 4.9.10 =
* New: Novo Maps integration
* Improvement: pinterest blocklist extended
* Fix: not 100% in wizard because of CF7 notification, even when not applicable.
= 4.9.9 =
* Improvement: only show CF7 notice when recaptcha is active
= 4.9.8 =
* Improvement: Events Calendar integration
* Drop Contact Form 7 integration as of CF7 5.4, due to continuous breaking changes in CF7. Contact Form 7 should integrate with the WP Consent API instead.
= 4.9.7 =
* Improvement: cookie policy overview css for mobile
* Fix: Youtube in Elementor widget after Elementor update not blocking anymore
= 4.9.6 =
* Fix: Revoke on cookie policy with accept/deny banner
* Improvement: do not re-run marketing after consent
* Improvement: clear cookies after cookie policy id change. Resolves issues for WPML users with cookiepath issues
* Improvement: activate blocked images on consent
* Fix: prevent infinite loop in Canada region with certain configurations
* Improvement: limit number of requests by jquery error detection
* Improvement: Advanced Captcha reCaptcha updated to integrate with latest version
* Improvement: improved URL pattern in URL input field
* Improvement: changed Advanced Custom Fields detection from ACF to ACF_VERSION, as it seems another plugin or theme is using this same function/constant/class
* Improvement: improved method of keeping track of blocked content containers that were already set up, or activated.
* Improvement: TranslatePress compatibility
* Improvement: allow for space in Google Maps iframe embed URL
* Improvement: stricter matching for WooCommerce Google Analytics pro and WooCommerce Google Analytics Integration, preventing matching on other scripts
= 4.9.5 =
* JetPack integration
* Fix: disabling of integrations not working properly after theme support was added.
* Fix: short code for custom consent area not activating due to changes in the jquery events props samu-d.
= 4.9.4 =
* Fix: when configured with accept/deny, accept on blocked content container not working
= 4.9.3 =
* Fix: not storing consent correctly because the no_choice option was included in the categories list
= 4.9.2 =
* Improvement: Fn.resize shorthand is deprecated
* Improvement: pass language to ajax calls with two character language code
* New: Woocommerce Analytics Pro integration
* New: Citadela Directory integration
* Improvement: when new languages are added to a site (multilanguage setup) ensure each cookie is added in every new language
* Fix: on multisite environments cookies were set on language subdomains instead of root. This fix sets cookiepath to root for WPML and polylang
= 4.9.1 =
* Fix: on websites with wordpress installed in subdirectory, cookiepath was set incorrectly.
= 4.9.0 =
* Fix: use get_rest_url() instead of site_url for rest api calls
* WCAG: Do Not Sell My Personal information form WCAG improvements
* WCAG: fix button accessibility and div for Contact Form 7. props @juliemoynat-tanaguru
* Improvement: set default checkbox style to slider
* Improvement: Recaptcha v2 for CF7 CSS for better placeholder look
* WCAG: fix category checkbox square accessibility. props @juliemoynat-tanaguru
* New: support for plugin "Invisible recaptcha for WordPress"
* New: option to disable monthly automatic cookie scan
* New: Volocation integration
* New: Set cookie path based on site url. This allows for sites in subfolders to place cookies on the subfolder URL only
* Fix: typo in css class
* New: Gravity Forms recaptcha integration
* New: Advanced noCaptcha & invisible captcha integration
* New: Added status change event to be able to hook into consent actions from the user. E.g. a reload on consent action for plugins with server side consent management.
* New: MonsterInsights Enhanced ECommerce integration
* New: Generate Press theme integration
* Fix: Resource interpreted as Document but transferred with MIME type. Due to browsers expecting a html document as source, using mp4 as src placeholder caused unexpected behaviour.
* Fix: duplicate statistics tracking on anonymous statistics accept action fix not merged correctly in previous update
* Improvement: new method of ip detection added
* Fix: some strings for Canadian policies not translatable
* Fix: revoke marketing cookies if statistics still enabled, on configurations with non anonymous statistics
* Improvement: more context for email on updating legal documents each 12 months in US configurations props @gfields108
* Improvement: resolve jQuery Migrate notice "Global events are undocumented and deprecated" props @m266
* Improvement: change front-end admin-ajax.php calls into rest-api calls
* Improvement: Visual Composer front end editing exclude from the Cookie Blocker
* Improvement: PHP 8 compatibility
* New: Woocommerce analytics integration (free)
= 4.8.2 =
* Improvement: possibility to add both a marketing and an advertising cookies section
* Fix: prevent double firing of analytics icw native class on accept #926
* Improvement: analytics script in script center when running analytics from Complianz
= 4.8.1 =
* Fix: Shares data test returning false positive because of inverted script center script condition, props Michael
* Fix: Tag Manager script was incorrectly added when Google Tag Manager for WordPress plugin was used, props @imkane
* Fix: PHP warning when classes to insert contain two spaces. props @jadorwin
* Improvement: Revoke cookie consent string changed into Manage Consent
* Improvement: add Post Status for legal documents
* Improvement: remove quotes in WP Google Maps string to prevent German quotes issues
* Improvement: jquery error detection, skip error on line 0 as false positive, prevent overwriting error
* New: Nudgify integration
* New: you can now disable the cookieblocker by adding ?cmplz_safe_mode=1 to the URL
= 4.8.0 =
* Improvement: include stats when in safe mode
* Improvement: CSS style for invisible checkboxes to make them readable by screen readers. props @juliemoynat-tanaguru
* Improvement: Trust Pulse integration
* Fix: boolean comparison on 1 value for geo ip detection in javascript, causing the plugin to do an unnecessary call to the server.
* Fix: custom statistics script blocking
* Fix: allow for matching on relative URL's for script sources, props @onwk
* Improvement: skip translation of cookie properties when Polylang is enabled, as Polylang can't handle different fieldname contexts
* Improvement: banner bottom edgeless theme responsiveness, props @tim
* Improvement: Podcast Player integration, props @vedathemes, @uiuiui7
* Improvement: consent mode Google
* Fix: Disable cookieblocker on AMP when AMP integration not enabled, props @jensminor
* Fix: ony one ID for the cookie policy overview div, props @frown
* Improvement: maximize cookie name length, to prevent display issues
* Fix: typo in text domain
* Fix: "Usage" translated with _x function with wrong arguments
= 4.7.6 =
* Fix: pass new cookies overview css also when only the cookies shortcode is used
* Fix: saving of plugin integration settings, props Laura
* Fix: proof of consent showing cookie information in white because of display hidden css style, props @ollieuk
* Improvement: some themes overriding the white-space:normal for the blocked content button
* Improvement: don't show "hide cookie banner option when no slug is available
* Improvement: compatibility with native browser lazyload option loading="lazy"
= 4.7.5 =
* Improvement: force display none on video placeholder for themes that are overriding the display none
* Improvement: cookie list responsive and better compact design
* improvement: responsiveness for banner bottom with square category checkboxes
* Fix: statistics paragraph EU/UK cookie policy not taking into account consent differences for statistical cookies
* Fix: advertising section incorrectly in cookie policy showing when no ads are showing
* Improvement: WCAG for blocked content notice: changed clickable div into button
= 4.7.4 =
* Improvement: don't enqueue document css in Gutenberg editor when disabled
* Improvement: no cookie wall on cookie policy
* Improvement: stricter instagram detection, preventing false positives on hyperlinks
* Fix: safe data before loading fields, which could cause conditions not to be updated yet on next pageload
* Fix: set default for personalized ads, to prevent unfocusable document control
* Fix: pass language as parameter with ajax calls, to ensure WPML and polylang translation
= 4.7.3 =
* CF 7 reCaptcha v2 fix
* Increase conditional jquery priority to limit chances of deregistering afterwards.
* Extend safe mode with script center features
= 4.7.2 =
* Improvement: add option to flag first party marketing cookies with an integration.
* Improvement: set tabindex to 0 for banner controls.
* Improvement: limit access to hide banner option to users with manage_privacy capability.
* Fix: Do Not Track signal not passed correctly when caching enabled.
* Fix: legacy revoke button in US.
* Fix: on configurations without marketing cookies "save preferences" was not functioning properly.
* Fix: max banner width was implemented with min-width.
* Fix: remove clearing cookies. Would cause issues when logged-in.
= 4.7.1 =
* Improvement: add option to exclude cookie banner from a page
* Improvement: keyboard accessibility of square and slider checkboxes on the banner for WCAG2
* Improvement: when no marketing categories are present, don't show the marketing category on the banner
* Improvement: consent area shortcode caching proof
* Improvement: only accept marketing on placeholder accept
* Improvement: drop obsolete setting cookie_warning_enabled
* Improvement: rename cookieconfig.js to complianz.js to prevent unnecessary blocking by all in one wp security
* Improvement: better adjusting to long button texts in the banner
* Improvement: add data-nosnippet to banner div to discourage indexing by search engines
* Improvement: separate question to explicitly let users choose to block recaptcha
* Improvement: google site kit notification
* Improvements on the consent area shortcode implementation
* Fix: accept deny banner variation did not revoke anymore after accepting, then revoking.
* Fix: CAOS integration not working anymore
* Fix: edited some typos
* Fix: legacy revoke button in opt out regions, revoking in manage consent tab in opt out regions
= 4.7.0 =
* Improvement: WCAG 2 compatibility
* Improvement: WP 5.5 permissions callback default true for public rest api calls
* New: Calendly integration
* New: Consent Shortcode to wrap your content manually [cmplz-consent-area][/cmplz-consent-area]
* Improvement: string update
* Improvement: proof of consent remove unnecessary info
* Improvement: improved activation notice
* Improvement: added Gutenberg preview image
* Improvement: improved Google Maps placeholders
* Fix: placeholders update
* Fix: static Google Maps images integration not working correctly due to regex pattern
* Fix: AMP matching on facebook and facebook-like tag
* Fix: Google Ads integration could not be disabled
* Fix: cookiedomain feature could cause indexOf undefined error in specific congfigurations
* NPM package updates
* Fix: Canada getting incorrect privacy statement URL on banner
* Fix: Vimeo sunset of simple API v2, requiring update of placeholder/thumbnail download
= 4.6.10 =
* Google Maps easy integration added
* Split last cookie sync into separate ajax call for better performance
* Fix: prevent page reload when user chooses functional only in category banner, when no other category has been selected.
= 4.6.9 =
* Fix: an option was not checked correctly, causing cookies not to get set on some configurations
= 4.6.8 =
* Fix: run upgrade for banner width to prevent saving issues because bannerwidth still has odd number of pixels
* Fix: correctly load defaults so the banner has a fallback if the impressum title is not yet entered.
* Improvement: Syncing or adding used services won't enable integrations
= 4.6.7 =
* Fix: correctly load defaults so the banner has a fallback if the impressum title is not yet entered.
= 4.6.6 =
* Improvement: read more link on double analytics implementation
* Fix: string "obsolete page" not translatable
* improvement: impressum title in cookie banner editable
= 4.6.5 =
* Improvement: remove "we do not use ... " statements from cookie policy
* Improvement: facebook for woocommerce integration
* Improvement: support for cross domain cookie consent on multisite
* Improvement: add noreferrer, noopener attributes to links on cookie policy
* Improvement: fix issue where Chrome bug causes blurred banner on uneven width sizes
* Improvement: fix broken Contact Form 7 integrations because of continuous changes to CF7
= 4.6.4 =
* New: Async script center option
* Fix: prevent CSS theme override in some themes on square checkbox
* Fix: prevent warning about rest-api by removing slash
* Fix: marketing level not firing correctly with Tag Manager
* Fix: when Do Not Sell My Personal Information is added, wrong link was highlighted as "upgrade" link
* Improvement: default banner width larger
= 4.6.3 =
* Fix: Tag Manager event not firing in new style checkboxes
* Improvement: catch error when uploads dir is not writable, for pdf creation
* Fix: Correctly replace banner labels in policy
* Fix: after 4.6.0 update script-center custom scripts not firing after consent
* Improvement: Simple Business Directory
* Improvement: dismiss soft cookie wall for categories below marketing
* Fix: manage consent paragraph not in correct paragraph for UK policy
* Improvement: additional css to prevent theme override of classic checkbox css
* Fix: don't force banner width on top, bottom and fixed banners
= 4.6.2 =
* Improvement: Dismiss review notice with GET to prevent issues with dismissing
* Improvement: Facebook / Twitter Smash Balloon integration added
* Fix: drop blocking of PayPal as third party
= 4.6.1 =
* Fix: load ACF Maps integration only when Google Maps is enqueued
* Fix: fallback for banner settings in case upgrade to new category banners didn't run successfully
* Fix: cmplzSetCookie function called without expiration, causing a session expiration
= 4.6.0 =
* New: New Cookie banner variations with new checkbox options, accept all button, etc.
* Fix: revoke on legacy revoke button not revoking correctly
* Fix: in case of categories, paragraph text in cookie policy didn't match
* Improvement: vimeo with DNT=1 in the URL will not get blocked, as it's privacy friendly, non tracking.
* New: added Rate My Post integration
* New: added ACF (Advanced Custom Fields) integration for Google Maps
* Fix: Contact form 7 recaptcha update patch
* Improvement: regex for double statistics implementation was not specific enough
= 4.5.2 =
* Fix: setCookie function at one point in code called without expiry, causing it to get set with session expiry
= 4.5.1 =
* Fix: some themes showing double checkboxes
= 4.5.0 =
* Fix: User registration dependency
* Fix: consent management on UK policy not possible due to an incorrect condition
* Improvement: improve conditions and descriptions for selling data elements in legal documents and questions
* Improvement: jquery >3.x compatibility
* Improvement: Divi notice for Recaptcha
* Improvement: convert region array when enabling or disabling geo ip setting
* Improvement: support for retrieval of second party cookies
* Improvement: dropped deprecated wp.editor in favor of wp.blockEditor in Gutenberg block, added panelrows.
* Improvement: manage consent by category on Cookie Policy
* SSL verify enabled for license verification
* javascript sanitization https://github.com/rlankhorst/complianz-gdpr/issues/260 props pierrotevrard-idp
* Do not automatically enable a service integration after a cookiedatabase sync
* Get screencapture for youtube videoseries
* Catch not existing src in iframe in cmplzGetURLParam()
* Improvement: for the geo ip document redirect, redirect the "other" region to website's base region
* Fix: possible issue when custom editing the cookie policy content because of empty table cells.
* Fix: AMP plugin changed hooks, causing the integration not to work 100%
* Improvement: added AddToAny in the integrations list