Privacy and Cookies

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
User avatar
roygore
 
 
Posts: 154
Joined: Wed Mar 25, 2020 6:34 pm
Location: United Kingdom

Privacy and Cookies

Post 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
User avatar
Pablo
 
Posts: 24579
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Privacy and Cookies

Post 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?
User avatar
roygore
 
 
Posts: 154
Joined: Wed Mar 25, 2020 6:34 pm
Location: United Kingdom

Re: Privacy and Cookies

Post 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
User avatar
Pablo
 
Posts: 24579
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Privacy and Cookies

Post by Pablo »

I think you will only need to apply the changes to
- Microsoft Clarity Statistics
User avatar
roygore
 
 
Posts: 154
Joined: Wed Mar 25, 2020 6:34 pm
Location: United Kingdom

Re: Privacy and Cookies

Post by roygore »

Thanks

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

Roy
Post Reply