• Resolved williamkhor92

    (@williamkhor92)


    Hi I have changed the age restriction to 21 years old but it seems like it does not reflect on my website when I have save the changes…

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Yeasin

    (@yeasin1)

    Hi @williamkhor92,

    Thank you for reaching out! I checked your website, and the age verification popup appears to be working perfectly on my end. You can view how it currently displays here: https://prnt.sc/GU4DHupZtHyy

    If you are not seeing the changes on your end, here are a couple of troubleshooting steps:

    • Admin Login: The popup is typically hidden when you are logged into your website as an administrator. I recommend checking the live site using an Incognito or Private browsing window.
    • Site Caching: If you are using any caching plugins, your browser might be loading an older version of the page. Please clear your site’s cache and test again.

    If you are still experiencing issues after trying these steps, please reply with a screenshot or a short screen recording, and I would be happy to investigate further.

    Best regards,
    Yeasin

    • This reply was modified 1 month, 2 weeks ago by Yeasin.
    Plugin Author Yeasin

    (@yeasin1)

    Hi @williamkhor92,

    I investigated the issue and found that aggressive page caching is causing the popup to reappear. Your site is serving a cached HTML version of the homepage, which bypasses the plugin’s standard verification checks.

    To permanently resolve this, I have added a client-side cookie check in Version 1.1.2. This ensures the browser instantly hides the popup if you have already verified your age, regardless of server caching.

    Please note: Version 1.1.2 will be available in about 20 hours. WordPress.org currently delays all plugin updates by 24 hours for routine security reviews.

    Once the update is available in your dashboard:

    1. Update the plugin to version 1.1.2.
    2. Clear your website cache (and Cloudflare cache, if applicable).

    The popup will then work perfectly without reappearing on page refreshes. Let me know if you need any assistance once the update is live!

    Best regards,
    Yeasin


    Plugin Author Yeasin

    (@yeasin1)

    Hi @williamkhor92,

    I’m following up to see if you had a chance to update to version 1.1.2 and test the popup again.

    The update includes a fix for cached pages by adding a client-side cookie check, so the age verification should now behave correctly even when page caching is enabled.

    If everything is working as expected, I’ll go ahead and mark this topic as resolved. If you’re still experiencing any issues, just reply here with the details, and I’ll be happy to help.

    Thank you for using the plugin!

    Best regards,
    Yeasin

    Thread Starter williamkhor92

    (@williamkhor92)

    hi meanwhile could you check my other website. http://www.giftmansion.com.my . It seems the pop up size doesn’t full shown

    Plugin Author Yeasin

    (@yeasin1)

    Hi @williamkhor92 ,

    Thanks for reaching out and providing the screenshots! I took a look at your other website (http://www.giftmansion.com.my) to investigate why the popup is displaying differently there.

    I can confirm that the plugin itself is functioning perfectly but what you are experiencing on Gift Mansion is a CSS Theme Conflict.

    Why is this happening? WordPress themes often contain “global” styling rules for containers and buttons. In this case, your specific theme on Gift Mansion is applying its own strict spacing, box-sizing, and text-wrapping rules to the elements on the page. Because these global theme rules are very dominant, they are “bleeding” into the popup, squishing the main container and forcing the text on the second button to get cut off instead of wrapping nicely.

    How to fix it: We can easily override your theme’s global settings and restore the popup’s intended design by adding a small snippet of Custom CSS.

    Please go to your WordPress Dashboard, navigate to Appearance > Customize > Additional CSS, and copy/paste the following code:

    /* Fix Age Verification Popup Theme Conflict */
    #avp-popup, 
    #avp-popup .avp-popup-inner {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 440px !important; 
    }
    
    /* Fix the squished buttons and cut-off text */
    #avp-popup .avp-btn {
        box-sizing: border-box !important;
        white-space: normal !important; 
        height: auto !important;
        flex: 1 !important;
    }
    

    Once you publish that CSS, clear your website’s cache, and the popup will display at the correct width with the buttons fully visible!

    If you aren’t comfortable adding this code yourself, just let me know and provide a temporary admin login. I’d be more than happy to jump in and apply the fix for you.

    Best regards,
    Yeasin

    Thread Starter williamkhor92

    (@williamkhor92)

    Thanks! The issue has been resolved!

    Plugin Author Yeasin

    (@yeasin1)

    @williamkhor92

    That is fantastic news! I’m so glad to hear the CSS snippet did the trick and the popup is looking perfect on your site now.

    If you have a spare minute and found this support helpful, it would mean the world to me if you could leave a quick review for the plugin on WordPress.org:

    https://wordpress.org/support/plugin/advanced-age-verification-popup/reviews/#new-post

    Since this is a free plugin, positive reviews are incredibly helpful and keep the project going. (Absolutely no pressure at all, of course!)

    Please don’t hesitate to reach out again if you ever need help with anything else. Have a great day!

    Best regards,
    Yeasin

Viewing 7 replies - 1 through 7 (of 7 total)

You must be logged in to reply to this topic.