I am using woocommerce in wordpress site.
I need to clear cart contents of a logged in user when that user logs out.
I am unable to find any options for the same in plugin settings.
Anyone let me know a way to achieve the same.
I am using woocommerce in wordpress site.
I need to clear cart contents of a logged in user when that user logs out.
I am unable to find any options for the same in plugin settings.
Anyone let me know a way to achieve the same.
Comments are closed.
Use
wp_logout
hook to empty the cart. Place the below code in your theme’sfunction.php
or in your own plugin.Edited: According to @helgatheviking ‘s solution