What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: Remove cookie consent popup from theme

Solved

How can I disable the cookie consent popup on my mobile website theme?

mystore0
Tourist
3 0 1

hi when im using my mobile to browse my website

its show up : this websites uses cookies to ensure ......

 

how can i remove this ? 

knowing that i try to solve the problem using other people solution but didn't work for me 

i try this too but i didn't find Theme.css 

also i try the below soloution and didnt work for me 

Online Store ->Theme ->Edit code

Assets ->Theme.css

[aria-label="cookieconsent"] {
    display: none !important;
}
Copy

 

my wepsite is 

 

mygentleflow.com

Accepted Solution (1)

KabirDev
Shopify Partner
248 61 74

This is an accepted solution.

Hi @mystore0 add the below code to your theme's CSS file.

.js-cookie-policy {
    display: none !important;
}
- Control payment methods visibility at checkout by KlinKode PayRules app.
- Contact me directly at shahriar@kabirdev.com

View solution in original post

Replies 2 (2)

KabirDev
Shopify Partner
248 61 74

This is an accepted solution.

Hi @mystore0 add the below code to your theme's CSS file.

.js-cookie-policy {
    display: none !important;
}
- Control payment methods visibility at checkout by KlinKode PayRules app.
- Contact me directly at shahriar@kabirdev.com
mystore0
Tourist
3 0 1

thanks its work!