Description
- click button open Cookies Prefferences Popup
- view demo – password: abc
- my friend did this, buy her a coffee

#1. Install Code
If you use Personal/Basic Plan and your plan doesn’t support Injection, see step #2.1.
#1.1. First, add a Button Block with URL: #cookies-prefences
#cookies-prefences

#1.2. Next, hover on Page where you want to add Button Block > Click Gear icon

Click Advanced > Paste this code
<!-- Cookies Prefences -->
<script>
document.addEventListener('click',function(e){
var a=e.target.closest('a[href="#cookies-prefences"]');
if(!a)return;
e.preventDefault();
var btn=document.querySelector('.cookie-banner-mount-point .manage');
if(btn)btn.click();
});
</script>
<style>
.cookie-banner-mount-point {
visibility: hidden;
}
</style>

#2. Customize
#2.1. If you use Personal/Basic Plan and your plan doesn’t support Injection, you can add a Markdown Block under Button Block

Then paste this code into Markdown Block.
<script src="https://code.beaverhero.com/other/0326c24v1cookiesprefences.js"></script>
<style>
.cookie-banner-mount-point {
visibility: hidden;
}
</style>
