-
I got cookieconsent 3.0 running on my Ghost CMS website. (Many thanks for the tool!) Ghost is triggering calls to stripe.com (URLs js.stripe.com and m.stripe.network). Where exactly do I have to put which code for cookieconsent 3.0 to add stripe to the non-essential cookies and make it a service to be checked on/off individually? Should I put it within the cookie-configuration.js? Where else? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I found the solution for any people using the Ghost CMS. The code would have to be entered in the file ghost_head.js This code <script async src="[https://js.stripe.com/v3/](view-source:https://js.stripe.com/v3/)"></script>needs to be changed into e.g. this code in the ghost_head.js <script async type="text/plain" data-category="analytics" data-service="Stripe" src="[https://js.stripe.com/v3/](view-source:https://js.stripe.com/v3/)"></script> |
Beta Was this translation helpful? Give feedback.
I found the solution for any people using the Ghost CMS. The code would have to be entered in the file ghost_head.js
This code
<script async src="[https://js.stripe.com/v3/](view-source:https://js.stripe.com/v3/)"></script>needs to be changed into e.g. this code in the ghost_head.js
<script async type="text/plain" data-category="analytics" data-service="Stripe" src="[https://js.stripe.com/v3/](view-source:https://js.stripe.com/v3/)"></script>