258 comments found.
Hi! How can I change the text color of the response messages to be black since I’m using a white background?
Hi there you can enter the following into your theme’s css file to set the response text to be black:
.agc_screen .agc_result, .agc_screen .agc_result * {
color: black;
}
Hi, just downloaded and installed your plugin. Great so far but it seems to be loading slowly. I reduced the size of my background to 256kb and don’t want to get much lower.
Have you heard of this happening with other customers? if so, is there a quick fix? Thanks Jeff Lubin jlubin99@gmail.comthe URL is http://www.highway12winery.com thanks JL
Hi Jeff, I will try and help. This isn’t a typical issue I’ve seen with other customers so far.
After taking a look at your web page, I’ve seen the download of the background image is going quick enough (174ms) but the TTFB is 1.85s and this causes the delay before the image can be downloaded.
I’m not sure why your server is responding slowly to the appended images but I can see that you have the plugin ‘Fancybox’ interacting with the background image. You could try disabling this and see if that makes any difference.
Also a good way to reduce your TTFB for images is to enable a WordPress CDN plugin. So if you don’t have one installed already, that would be worth trying out.
Thanks, Sam
thanks for the quick reply Sam. I’ll make those changes and let you know the results.
Ok we do have a CDN plugin (Scmush) and that helped get things moving faster. Not too sure about Fancybox, i don’t see it on the site. Either way, its’ working much better now. Thanks again for your prompt assistance! JL
Can I use this plugin to protect a specific Woocommerce product?
Hi you can choose to restrict specific posts. So you would be able to protect a Woocommerce product.
About age checker:
Can plugin be placed in categories/posts/pages/custom post type and other places?
Hi the plugin can be placed in specific posts & pages, but not categories and custom post types at the moment.
Hi. I want to ask about your аге verification plugin – Is there a possibility for certain pages to display different type of verification?
Hi I’m afraid this isn’t possible within the plugin’s settings. If you know how to code then you could make this customisation to the files.
Hi. I want to ask about your аге verification plugin – Is there a possibility for certain pages to display different type of verification?
The plugin is not letting me customize it. I cannot add a logo or anything. I see General option, and Restricted Sections is grayed out and cannot be clicked.
This needs to be fixed as I purchased this age checker with the intent to be able to customize it. Let me know. Thanks.
Hi it shouldn’t be doing that, it sounds like something is breaking the script. If you can forward over your URL and some temporary login details to support@themeware.net your issue can be looked into. Thanks.
I found the issue. I deactivated WP Rocket and the issue was fixed and Age Checker loads the create way and can be customized. I’m not sure how to fix the issue when WP Rocket is enabled, though.
Also, is there a way to stop this gate from loading on every single page? I only want it to load on an entry page, wherever that may be. From my experimenting now, it loads every time I go to a new page. Thanks.
Hi I haven’t been able to test the plugin with WP Rocket as it seems to be a premium service. If you activate WP Rocket again let me know if any errors come up in the browser console.
Regarding age verification on a single page, have you gone to restricted sections and chosen selection only?
Hi…is this plugin ok for WP Oblique theme (free version)....I use Elementor to edit and am just a beginner with code….
....thanks…Bryan.
Hi Bryan, this should work ok. All the editing is done within the plugin’s interface. If there are any problems then let me know! Thanks.
hello, is it possible or will it be possible to use the plugin only for certain categories of the website? Indeed, I would like to check the age of my visitors in certain categories and not on the site. thank you
Hi are you referring to Posts->Categories? Unfortunately this isn’t currently a feature available with the plugin. I do plan on adding it in a future update but I can’t give an exact date when this would be ready at the moment.
Do you know how to code? If so you could make the customization for now by editing the agc_scripts() function within age_checker.php. You could check the $current_page_id against certain categories using in_category() and either prevent or load the verification scripts.
yes that’s it, all the articles attached to the same category. I do’nt khnow how to code unfortuneltaly. So i’ll wait the future update. thanks a lot.
Hi I just wanted to let you know that a new update is available for download. This will allow you to age restrict categories.
I have also sent you an email explaining this.
I just installed and it is not displaying. I cleared all caches and still no luck, is there something I am doing wrong? It is enabled in the options.
Hi please could you send your site URL and some temporary login details to support@themeware.net so that your issue can be looked into. Thanks.
Hello,
I will be launching the Age checker for wordpress plugin on my site and would like to have different age requirements for different provinces in Canada. I was wondering if this was possible with the plugin?
Thanks
helloi
hello, it is impossible for me to configure your plugin. thank you in advance for your help
Hi there please could you send your URL and some temporary login details to support@themeware.net. Is there a specific setting which isn’t working for you? Thanks
done. Thank u
no more news?
Thans a lot for your help
If the person is below 18 I want him to redirect to a safe page inside same website. Is it possible with this plugin?
Hi you can redirect the user to a different page if they click the exit button.
Can that page be a page inside current website?
Yes it can, you would need to exclude that page from age verification.
Is it possible to change font and add color to the font?
Hi
At the moment there isn’t a way to change the text colour through the plugin interface. This will probably be included in a future update.
However, for now it would just require some edits to your theme’s style.css file.
For example to make the text and button colour black you could enter something like this:
.agc_screen p {
color: black;
}
.agc_screen .agc_verify_button {
color: black;
border: 1px solid black;
}
.agc_screen .agc_verify_button:hover {
color: white;
background-color: black;
}
If you wanted to change the font to match your theme’s font you could enter:
.agc_screen * {
font-family: inherit;
}
Hello!
Is there anyway to add a cookies approval checkbox that will say something along the lines of “Remember me for 30 Days” and the user can opt-in to it?
Thanks
Hi there isn’t an in-built way to do this but if you’re comfortable editing the code I can point you in the right direction.
You could add a remember me checkbox to verify_template.php. Then check if this has been ticked within agc_verify() in age_checker.php.
If it has been ticked then change the cookie life within setcookie() to 86400 * 30.
I hope that helps.
Hi there, I want to use this in Canada where the age of majority varies from province to province. Is there a way to add something like: Select your province (and have a specified age for each) and then the date of birth? Thanks, Matthew
Hi Matthew, I’m afraid there isn’t this functionality at the moment. It is something that might be included in a future update though. For now you would need to add in this customisation to the code yourself.
Hello, you only have one CSS class (agc_verify_button) for both buttons (send and exit). Is there a way to design the “exit” button differently? 
Hi in your style.css file you can enter your customisation within:
.agc_screen .agc_verify_button:nth-child(2) {
}
Hi it seems your theme’s css is adding the blur to images with a data-src tag. If you add the following to your style.css file this should fix the issue:
.agc_screen img[data-src] {
filter: none;
}
Hello, I bought and installed the module to my wordpress website https://diamond-lounge.ch/ but i didn’t find a way to have a message in french and english language. My website has a french and english version and i will appreciate to have it in french language for the french version and in english for the english version. I’m sure there is a way to do it. Can you please help ? Regards.
Marc mt@rwswebagency.chHi Marc sorry I’m afraid this plugin doesn’t offer multi language support at the moment. If you know how to do some coding, I would advise that you make changes within the verify_template.php file so it can alternate the text between french and english. I hope that’s of some help.
Hi There,
I have just purchased and activated your age checker plugin, but on the settings page it is full of error messages and I can’t do anything with the plugin. My homepage is showing:
Warning: Illegal string offset ‘active’ in /home/customer/www/krupnikoz.com/public_html/wp-content/plugins/age-checker/age_checker.php on line 120
and so on…
We are using wordpress version 5.3.2 PHP 7.1
Please can you help?
Thanks
Jordan
Hi Jordan would you be able to provide some temporary login details to support@themeware.net so that this issue can be looked into. Thanks.