Code-Snippets-Functions/Execute a function on a child site/WooCommerce/disable-recently-viewed-product-cookie.txt
2023-05-09 14:07:37 -06:00

5 lines
175 B
Text

add_filter( 'woocommerce_recently_viewed_product_cookie_lifetime', 'disable_recently_viewed_cookie' );
function disable_recently_viewed_cookie( $lifetime ) {
return 0;
}