Title: block cookie
Last modified: April 13, 2018

---

# block cookie

 *  Resolved [paolapisano](https://wordpress.org/support/users/paolapisano/)
 * (@paolapisano)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/block-cookie/)
 * Hi,
    i’m trying to use your plugin. For cookie consent do i have to modify manually
   some code? I tried to use it on my site, but, even if i declare not to use some
   cookie, they works anyway. For example _ga, _gat etc.
 * What am i doing bad? 🙂
 * thanks
    Paola
    -  This topic was modified 8 years, 2 months ago by [paolapisano](https://wordpress.org/support/users/paolapisano/).

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Fernando Claussen](https://wordpress.org/support/users/fclaussen/)
 * (@fclaussen)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/block-cookie/#post-10178355)
 * Hi [@paolapisano](https://wordpress.org/support/users/paolapisano/),
 * You do have to manually change the code.
 * We provide a few helper functions. For cookies, you have `is_allowed_cookie( '
   cookie_name' )`.
 * You can use this for not loading the snippet that creates the cookie.
 * Google Analytics and probably others also provide a different way to opt-out.
 * For GA you could do the following.
 *     ```
       <?php if ( ! is_allowed_cookie( '_ga' ) ) : ?>
         <script>
           window['ga-disable-UA-XXXXXXXX-X'] = true; // Replace 'X' for your UA numbers.
         </script>
       <?php endif; ?>
       ```
   
 * I hope that helps you out.
 *  Thread Starter [paolapisano](https://wordpress.org/support/users/paolapisano/)
 * (@paolapisano)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/block-cookie/#post-10192717)
 * Thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘block cookie’ is closed to new replies.

 * ![](https://ps.w.org/gdpr/assets/icon.svg?rev=1837142)
 * [GDPR](https://wordpress.org/plugins/gdpr/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gdpr/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gdpr/)
 * [Active Topics](https://wordpress.org/support/plugin/gdpr/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gdpr/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gdpr/reviews/)

## Tags

 * [cookie](https://wordpress.org/support/topic-tag/cookie/)

 * 2 replies
 * 2 participants
 * Last reply from: [paolapisano](https://wordpress.org/support/users/paolapisano/)
 * Last activity: [8 years, 1 month ago](https://wordpress.org/support/topic/block-cookie/#post-10192717)
 * Status: resolved