34 comments found.
How I can add a third button “Accept All” that switch on all cookies preference and save it?
Hi,
Thank you for purchasing Cookie Notice Pro Plugin!
Adding a third “Accept All” button requires a code-level customisation. Please reach out to us at support@flerosoft.com, and our team will be happy to guide you through the process.
Regards, Flerosoft
this is not plugin? i’m not coder, I don’t know how to install it. i see the documents but there are lot of code.
demo has lot of setting but it’s not plugin . it’s just code
seems i bought mistake, i want to purchase Wordpress plugin
Hi, this is a jQuery plugin, which you can manually integrate into your website. You don’t need to write any custom code—the plugin works out of the box. All you need to do is import the required CSS and JS files, and make some configuration changes in the JS file as per the documentation.
If you’re looking for a WordPress-based plugin instead, you can purchase it here: https://flerosoft.com/products/wordpress/cookie-notice-pro-advanced-wordpress-plugin/
Once you’ve purchased the WordPress plugin, just let us know—we’ll refund the amount you paid for the jQuery version. Alternatively, if you’d like to integrate the jQuery plugin into a WordPress site, you can follow the instructions available here: https://codecanyon.net/item/cookie-notice-pro-advanced-jquery-plugin/32069094/faqs/51205
Connect with us here: support@flerosoft.com
ok. i only choose region ( EU ). and other countries no required. can I choose location on regular plan?
Hi there, Thanks for your question!
Cookie Notice Pro doesn’t include built-in support for location-based targeting. If you want to display the notice only to visitors from the EU, you’ll need to implement a custom solution by modifying the code.
To show the notice only to EU visitors, you can integrate an IP geolocation service (like ipinfo.io or ipapi.co) before calling cookieNoticePro.init().
JavaScript Sample Code, which can be pasted in <head></head> of your page:
<script>
window.addEventListener('load', function () {
fetch('https://ipapi.co/json/')
.then(response => response.json())
.then(data => {
if (data.in_eu) {
// Initialize only for EU visitors
cookieNoticePro.init();
}
})
.catch(error => {
console.error('Geolocation error:', error);
// Optional: fallback behavior (e.g., show cookie notice to all)
});
});
</script>
i want wordpress plugin only show specific region ( EU ). can you please implement the plugin?
Hey, Please get in touch with us here for custom requirements.
support@flerosoft.comit seems charge of fee. then i will move to another plugin which is supporting specific region.
Hi,
Please share your requirements with us at support@flerosoft.com. If feasible, we’d be happy to assist with the implementation at no cost. To evaluate this, we’ll need a clear understanding of your specific needs.
How would you get this to work with the cookies set by the likes of YouTube and Vimeo
To integrate Cookie Notice Pro with YouTube/Vimeo cookies (which set cookies on script load), follow these steps:
1. Replace Embeds with Placeholders
HTML:
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Add jQuery -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<!-- Add Cookie Notice Pro script (adjust src as needed) -->
<script src="path/to/cookie-notice-pro.js"></script>
<script>
function injectScripts() {
if (cookieNoticePro.isPreferenceAccepted('analytics') === true) {
$('head').append('<script>console.log("Analytics Accepted");<\/script>');
}
if (cookieNoticePro.isPreferenceAccepted('marketing') === true) {
// Inject YouTube
document.getElementById('youtube-embed').innerHTML = `
<iframe width="560" height="315" src="https://www.youtube.com/embed/YOUR_YOUTUBE_ID"
frameborder="0" allowfullscreen></iframe>
`;
// Inject Vimeo
document.getElementById('vimeo-embed').innerHTML = `
<iframe src="https://player.vimeo.com/video/YOUR_VIMEO_ID"
width="640" height="360" frameborder="0" allowfullscreen></iframe>
`;
}
if (cookieNoticePro.isPreferenceAccepted('preferences') === true) {
// Add your preferences-related scripts here
$('head').append('<script>console.log("Preferences Accepted");<\/script>');
}
}
</script>
</head>
<body>
<!-- Add containers for embeds -->
<div id="youtube-embed"></div>
<div id="vimeo-embed"></div>
</body>
</html>
3. Key Features Used
-
onConsentAccept: Triggers embedding after consent. -
isPreferenceAccepted(): Checks if “marketing” category is accepted.
4. Testing
- Before consent: No YouTube/Vimeo iframes or cookies (check browser dev tools > Application > Cookies).
-
After consent: Embeds load, cookies (e.g.,
VISITOR_INFO1_LIVE,vuid) appear.
This ensures compliance: cookies only set after consent. Adjust categories/placeholders as needed.
Can I add cookies to the accept/decline functionality, like Hotjar, Facebook Pixel, and other marketing platforms?
Hey,
You can inject any scripts based on consent accepted by the user. Here is how it works:
- You add any third-party scripts.
- It will not be injected into your website unless the user accepts consent.
- Once the user accepts consent (marketing/analytics, etc.), the third-party script will be injected into the website and a cookie will be stored.
You can follow a guide here on how to inject third-party scripts based on user preferences: https://codecanyon.net/item/cookie-notice-pro-advanced-jquery-plugin/32069094/faqs/51085
If you need any support, feel free to contact us anytime here and we will help you with the installation: https://support.flerosoft.com/
We suggest purchasing the plugin directly through our website to get a discount of up to 50% (use code FLEROSOFT during checkout): https://flerosoft.com/products/javascript/cookie-notice-pro-advanced-jquery-plugin/
Hello, I use Matomo, do you think your script can work with this service? Thanks!
Hi! it works in an HTML/JS/PHP environment. If you’re able to include external CSS and JS files, and add some code to the <head></head> section of your project, it should integrate seamlessly. If you have more questions, please connect with us here: https://support.flerosoft.com/
About the free installation, does that mean you will install inside our project for free?
Hello,
When you purchase directly from our website, https://flerosoft.com/products/wordpress/cookie-notice-pro-advanced-wordpress-plugin/, we include installation, up to 50% discount and an extra 2 months of support.
If you bought it on CodeCanyon, we’re still here to help! For any issues, please reach out at https://support.flerosoft.com/.
Hi, I want to ask a question. Is it possible to change the config settings in our JavaScript file within the init() function? If possible, I want to manipulate the config values with php variables when call init function.
Hello,
We’re excited to share that we’re wrapping up a feature that will allow you to modify config settings directly within the init() function. This update is set to go live in the next 3-4 days.
If you need this functionality sooner, please contact us at https://support.flerosoft.com/, and we’ll provide you with the updated code.
Once available, this feature will make it easy to pass custom config options to update the plugin’s default settings:
/* Initialize cookie consent banner */
$(document).ready(function () {
cookieNoticePro.init({
themeSettings: {
primaryColor: "#FFA500",
},
showSettingsBtn: false,
showCloseIcon: true,
});
});
Best regards, Flerosoft Support Team
I feel lucky to know that an update I need will be made in 3-4 days
It’s not very urgent, I can wait 3-4 days. Thank you very much.
Hi there! We’re excited to share that we’ve released an updated version of Cookie Notice Pro, where you can now adjust config settings directly within the init() function, making setup even easier.
We would be incredibly grateful if you could take a moment to leave a review on Codecanyon. Your feedback really helps us continue improving.
what defrint ectende and regular ? its free install ?
Regular License Use, by you or one client, in a single end product which end users are not charged for. The total price includes the item price and a buyer fee.
Extended License Use, by you or one client, in a single end product which end users can be charged for. The total price includes the item price and a buyer fee.
I have a WordPress site, please tell me how to install your plugin Cookie Notice Pro? And the second question, can I install it directly through Google Tag Manager?
Hey,
Here is the step-by-step guide for wordpress installation: https://codecanyon.net/item/cookie-notice-pro-advanced-jquery-plugin/32069094/faqs/51205Adding a plugin involves adding script, CSS files in your project. So GTM method is not recommended.
To get a discount, we would suggest you to purchase from website directly: https://flerosoft.com/products/javascript/cookie-notice-pro-advanced-jquery-plugin/
We will help with your WordPress installation too once you purchase directly from the site, please connect with us here: https://support.flerosoft.com/
I just purchased on the website by PayPal to your paddle account. Haven’t received any email so far. Please check.
Thank you for your purchase!
Please check your spam or junk folder if you have not received our email yet. If you still can’t find it, kindly contact us here https://support.flerosoft.com/ with the email address you used to make the purchase we will send you the download link again.
We appreciate your patience and understanding.
Just sent the request on https://support.flerosoft.com/ – a**@yahoo.com
Hey,
While making the purchase you entered the wrong email address. Due to this, you did not receive it. We have forwarded it again to your email id please check.
I took advantage of a 20% discount by buying straight from the Flerosoft website (https://flerosoft.com). The plugin highly customizable and easy to use. Their customer support is top-notch and very quick to respond!
Thank you so much for your feedback 
your website / docs are down
We were undergoing scheduled maintenance to enhance your experience with our website and documentation. We sincerely apologize for any inconvenience this may have caused you. It is accessible again now!
Thanks for the reply!
I made my purchase directly through the Flerosoft website (https://flerosoft.com) to benefit from a 20% discount.
Their customer service is outstanding and incredibly responsive. The script offers a range of customization features that are straightforward and user-friendly. Truly, it delivers on its promises flawlessly!
Hey, thanks for your feedback 
is there more to the product than the index.html file, javascript file and a css file, like a control panel or admin
Hey, you dont need control panel. You just have to add files in your website and popup will be shown, it just takes 5-10mins in setup. To read about setup refer: https://cookienoticepro.flerosoft.com/docs/
what files do i get when i purchase this
Hey,
You will receive index.html file, javascript file and a css file. You can also check the folder structure here: https://cookienoticepro.flerosoft.com/docs/
To get discount, we would suggest you to directly purchase from website: https://flerosoft.com/products/javascript/cookie-notice-pro-advanced-jquery-plugin/
Hey Flerosoft, could you add a paid cookie consent function like on https://www.jeuxvideo.com/? Users must subscribe (via Stripe) or accept cookies.
Thank you for your suggestion regarding a paid cookie consent function similar to jeuxvideo.com. At this time, we’re focusing on features that align closely with our current product roadmap and compliance requirements. We appreciate your understanding and value your input as we continue to improve our services.
However, we’re open to custom changes or creating a bespoke solution tailored to your needs. Please connect with us for more details on how we can assist.
Hi there, can this script be used on static websites?
Hey, yes absolutely. This plugin works great on both simple static and complex websites, and it’s super easy to add to your site – it only takes about 5 minutes. Plus, you can get up to 20% off if you buy it directly from https://flerosoft.com/products/javascript/cookie-notice-pro-advanced-jquery-plugin/
Thank you for the quick response. Do I get the full source code when purchasing the script?
Yes, ofcourse! You will get full source code of cookie banner.
I bought your script on your site but I’m having trouble installing it in a Laravel project. Can you tell me where to add the files?
I found it on my own, but I have a question: can you provide a link allowing the user to change their cookie preferences ? (European legislation gives users the right to change their preferences at any time)
Hey,
On a button or link click you can call the method to again open the popup with accepted values so user can changes the preferences cookieNoticePro.reinit()
We need a Generator version to offer our free users, something like this: https://cookieconsent.popupsmart.com/gdpr-cookie-consent/
Let’s say someone accepts some type of cookies, then he wants to change his/her preferences. How can I enable a button to have the cookie box reappear?
<p>I would like to <a href="javascript:void(0)" onclick="cookieNoticePro.reinit();">change my preferences</a></p>
Documentation: https://cookienoticepro.flerosoft.com/docs/getting-started#item-4-5
Thanks