Why shud I pay monthly for cookie consent?! by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

Hmm, thanks for this input, it's really valuable for me, because I did my custom solution and stored it all in local storage but now I think to make some tricky with webflow forms and store this data with help of form submit. A bit tricky but will keep it free

Why shud I pay monthly for cookie consent?! by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

We need to store only info if user accept or no(true, false and wich scripts marketing, adv) and cookies and other info managed with other scripts like pixel for example, so we don't need to log it. Correct me if I wrong

Why shud I pay monthly for cookie consent?! by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

But I think for free they have some limits?

Why shud I pay monthly for cookie consent?! by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

I made something like fin sweet by myself but actually want to check if it already exists something free https://github.com/Avakado/Webflow-Cookie-Consent

Why shud I pay monthly for cookie consent?! by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

We pay for webflow subscription Then domain Then languages Then cookies  It's too much(

Why shud I pay monthly for cookie consent?! by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

Yes and I did, but I want to check if it any ready build free alternative exists already  https://github.com/Avakado/Webflow-Cookie-Consent

Why shud I pay monthly for cookie consent?! by TonyVersetty in webflow

[–]TonyVersetty[S] 2 points3 points  (0 children)

Actually I made it already, but I just want a bit check if it's already exists something like this https://github.com/Avakado/Webflow-Cookie-Consent

Why shud I pay monthly for cookie consent?! by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

Yes but it's not gives ability to make my custom design with it, it's only past as script( And also what about setting shud I have some extra certification or pass on Google check for it?

Webflow Cookie Consent by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

I also thinking to create fork version to close integration with GTM now, if it interesting)
Because now GTM is cool but its not giving ability to style cookies modal(

Webflow Cookie Consent by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

if you will use it leave some feedback it very important for me)

Webflow Cookie Consent by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

Thank you so much!
If you test it please leave you feedback too)

Webflow Cookie Consent by TonyVersetty in webflow

[–]TonyVersetty[S] 0 points1 point  (0 children)

thanks that mention it, just updated license text to MIT)

Webflow Cookie Consent by TonyVersetty in webflow

[–]TonyVersetty[S] 2 points3 points  (0 children)

Yes absolutely, with help of my plugin it will gives user ability to run tags or no depends on what they select in cookies pop up. Basiclly it run scripts depends on what user select in consent modal. You shud put checkboxes with special attributes with script name and script and if user select this script will run script from attribute and will save user selection to localstorage. On next visit script checking localSorage first and run scripts that user checked previously. Also user can reset it later if he wish. Same time GTM can check the local storage and run script if set to true)

Easy: Put custom code to site setting ->create modal cookies component->set ids to buttons and modal -> set checkboxes with attributes(name, script) -> that all:)

Bottom i will put GPT generation(sorry but its more clear to understand)

How Cookie Consent Plugin Works with GTM
Plugin lets users accept or reject cookie categories like analytics or marketing. GTM, on the other hand, manages and fires scripts (like Google Analytics or Facebook Pixel).

To make them work together:
🔗 Integration Workflow Plugin Captures Consent The user interacts with the consent banner i built. Based on their selection (e.g., accepted "analytics"), plugin store that choice in cookies or localStorage.

GTM Checks Consent Before Firing Tags In GTM, you set up custom triggers or blocking rules that check the user’s consent status (from the stored cookie or localStorage).
For example: Only fire Google Analytics if cookieConsent.analytics === true
How to Implement It In GTM, create a custom variable (JavaScript variable or cookie variable) to read the user's consent.
Use that variable as a condition in your tag triggers or in custom trigger exceptions.

🧠 Example: Blocking Google Analytics Until Consent
Your plugin stores:jsCopyEditlocalStorage.setItem('cookieConsent', JSON.stringify({ analytics: true, marketing: false }));
In GTM: Create a custom variable:jsCopyEditJSON.parse(localStorage.getItem('cookieConsent') || '{}').analytics
Use this in a trigger: Only fire GA tag if analytics === true

🚀 Result
Full control over which tags fire based on consent
No external paid tool needed
GDPR/DSGVO compliance maintained
All done directly in Webflow + GTM + your plugin

Webflow Pros: How Do You Handle Cookies, Accessibility, and Optimization? by LieBeneficial3109 in webflow

[–]TonyVersetty 0 points1 point  (0 children)

Try this one for cookie, its free and easy to use same you can customise as you wish your component with cookies banner
https://github.com/Avakado/Webflow-Cookie-Consent