Page 1 of 1

Privacy and Cookies

Posted: Wed Apr 15, 2026 9:06 pm
by roygore
The recently released wb21 introduces an example project showcasing a customizable cookie consent popup with multiple consent categories, user controls, and script blocking based on user preferences. It's found near the bottom of the list of wb21 features.

I would really like to replace my old cookie banners with this new feature. I've exmined the website with the demo trying to replicate it into my website but, not being a programmer as such, I haven't been able to get it to work.

Is there or does anyone have a set of instructions I can follow to insert the code and setup for this great new feature please?

Thnaks for any help.
Roy

Re: Privacy and Cookies

Posted: Thu Apr 16, 2026 6:00 am
by Pablo
There is no dedicated tutorial, but instructions are included on the 'wb21_consentpopup' page.
This does require some programming knowledge because it need to be adapted to the scripts you are using.
There is no way for the software to know which scripts you have added and how they work, so this can only be done manually.

Are you using any specific scripts?

Re: Privacy and Cookies

Posted: Thu Apr 16, 2026 4:18 pm
by roygore
Thanks Pablo for your reply.

As I mentioned before I'm not a programmer but with an IT background, I can insert code if told what to insert and where to put it.

As you asked - I have the following code/scripts in the website' Ref website: https://www.tringu3a.org.uk/

On the index page:

Between <head></head> tag
________________________________________________________
<!-- Microsoft Clarity Statistics -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "t2edmpnrc6");
</script>
________________________________________________________

<!-- Google SEO Verification -->
<meta name="google-site-verification" content="MVxPKiK1tmRJgXSQaMV1CQQj_IWbbqGiEW4x_zKxIQc" />

<!-- Bing SEO Verification -->
<meta name="msvalidate.01" content="99C0289496B9A22D35B19E1FB1E49A66" />
________________________________________________________

Before </body> tag
<a href="https://www.easycounter.com/">
<img src="https://www.easycounter.com/counter.php?u3ahome"
border="0" alt="Free Hit Counters"></a>
<br><a href="https://www.easycounter.com/"></a>
________________________________________________________


On the master page:

Before </body> tag
________________________________________________________

<script language=JavaScript>
<!--

//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>
________________________________________________________


That's all of the scripts/code other than the code created by WYSIWYG web Builder V21

I hope you can help.

Thanks for your help.
Roy

Re: Privacy and Cookies

Posted: Thu Apr 16, 2026 4:49 pm
by Pablo
I think you will only need to apply the changes to
- Microsoft Clarity Statistics

Re: Privacy and Cookies

Posted: Thu Apr 16, 2026 8:36 pm
by roygore
Thanks

If I remove Microsoft statistics what would I then ned to do?

Roy