Pop up page entry agreement

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? :neutral_face:

1 Like

Hey there, @Kohesion_Design :wave:

You can use the Age Verification for this purpose. To achieve it, please follow these steps:

Choose Yes/No buttons as Verification Method


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; 
} 
}

Add the needed text to the Message or Caption field


Voila! You’ve got a popup restricting the access to your website:


Try it out and let me know if it worked for you :wink: