anyone want to make a pop up that you need to tick the button to be allowed entry? not an age verification, but one that you have to read and then click ‘yes, i agree’ to be able to continue to site. Or is this already possible with a standard pop up widget and I just need to work out how to remove the ‘X’ close option?
1 Like
Hey there, @Kohesion_Design
You can use the Age Verification for this purpose. To achieve it, please follow these steps:
Hide No button and align Yes button to the center
Please add these codes to the Custom CSS field on the Appearance tab of your widget’s settings:
1. Hide No button:
.eapp-age-verification-item-allow-buttons-no {
display:none;
}
2. Align Yes button to the center
.eapp-age-verification-item-allow-buttons-yes{
width: 200px;
margin: 0 auto;
}
}
Voila! You’ve got a popup restricting the access to your website:
Try it out and let me know if it worked for you