Page 1 of 1

Cookie consent banner

Posted: 2025-08-04 19:21
by Marcelo Vitoria
A prospective client asked me about having a cookie consent banner in AppGini applications.

For those of you developing apps outside of Brazil, there are numerous cookie banner generator options, many of which are free. I was able to generate mine in Javascript because Brazilian options are very expensive, and data protection laws are much stricter than international ones.

On my website, I placed it within the <head> tag in the Index, but in the AG, I have questions and would like to know which file would be ideal for making the JS call that will generate the cookie banner without causing any problems in the application.

Thank you and good luck!

Re: Cookie consent banner

Posted: 2025-08-05 13:18
by a.gneady
You should probably place the script for generating the cookie consent banner in hooks/footer-extras.php between normal <script> ... </script> tags.

Re: Cookie consent banner

Posted: 2025-08-05 21:38
by Marcelo Vitoria
a.gneady wrote:
2025-08-05 13:18
You should probably place the script for generating the cookie consent banner in hooks/footer-extras.php between normal <script> ... </script> tags.
OK, thanks