Title: &#8220;exit&#8221; button
Last modified: December 1, 2018

---

# “exit” button

 *  Resolved [aculine](https://wordpress.org/support/users/aculine/)
 * (@aculine)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/exit-button-2/)
 * Hi, I need to destroy age_gate cookie (used on all content) when user logout 
   from Woocommerce.
    I’ve tried both with PHP and Javascript, but when go to home,
   age_gate is already approved. How can I do?
 * thank you
    Luca

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

 *  Plugin Author [Phil](https://wordpress.org/support/users/philsbury/)
 * (@philsbury)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/exit-button-2/#post-10941231)
 * Hi [@aculine](https://wordpress.org/support/users/aculine/),
 * This is possible if you use the wp_logout hook, just add the below to your themes
   functions.php
 *     ```
       /**
        * Clear Age Gate on logout
        */
       add_filter('wp_logout', 'clear_agegate');
   
       function clear_agegate(){
         setcookie("age_gate", 0, 1);
       }
       ```
   
 * Thanks
    Phil
 *  Thread Starter [aculine](https://wordpress.org/support/users/aculine/)
 * (@aculine)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/exit-button-2/#post-10943202)
 * Thank you [@philsbury](https://wordpress.org/support/users/philsbury/), it works
   perfecty!
 * L.

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

The topic ‘“exit” button’ is closed to new replies.

 * ![](https://ps.w.org/age-gate/assets/icon-256x256.png?rev=2783003)
 * [Age Gate](https://wordpress.org/plugins/age-gate/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/age-gate/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/age-gate/)
 * [Active Topics](https://wordpress.org/support/plugin/age-gate/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/age-gate/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/age-gate/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [aculine](https://wordpress.org/support/users/aculine/)
 * Last activity: [7 years, 5 months ago](https://wordpress.org/support/topic/exit-button-2/#post-10943202)
 * Status: resolved