- This topic is empty.
-
AuthorPosts
-
October 18, 2024 at 6:12 pm #26810
Christina
Guestmaking this topic due to ongoing confusion in our Discord server and conflicting references on the web…
October 18, 2024 at 6:15 pm #26811Ruth
GuestStore front end:
– woocommerce_cart_hash session Helps WooCommerce determine when cart contents/data changes.
– woocommerce_items_in_cart session Helps WooCommerce determine when cart contents/data changes.
– wp_woocommerce_session_ 2 days Contains a unique code for each customer so that it knows where to find the cart data in the database for each customer.
– woocommerce_recently_viewed session Powers the Recent Viewed Products widget.
– store_notice[notice id] session Allows customers to dismiss the Store Notice.
No personal information is stored within these cookies.Store dashboard (/wp-admin):
– woocommerce_snooze_suggestions__[suggestion] 2 days Allows dashboard users to dismiss Marketplace suggestions, if enabled.
– woocommerce_dismissed_suggestions__[context] 1 month Count of suggestion dismissals, if enabled.
– tk_ai session Stores a randomly-generated anonymous ID. This is only used within the dashboard (/wp-admin) area and is used for usage tracking, if enabled.
Questions and supportOctober 18, 2024 at 6:16 pm #26812Douglas
Guestold but related:
https://github.com/woocommerce/woocommerce/issues/21944October 18, 2024 at 6:38 pm #26813Laura
Guesthttps://wordpress.org/support/topic/excluding-woocommerce-cookies-from-the-cache/
these suggest skipping
wp_woocommerce_session_in cachebut ee only uses unique session ids for that cookie
October 18, 2024 at 6:43 pm #26818Logan
GuestWP Rocket also suggests skipping that cookie:
October 18, 2024 at 6:47 pm #26819Evelyn
GuestThe EasyEngine approach is what SlickStack also implements, some GitHub users have also used the same approach too. But a few Discord users have complained about conflicts with some WooCommerce add-ons having cache conflicts on the thankyou/order-received page…
e.g. https://gist.github.com/edisoncosta/6d512411921771b38dd8
^^what SlickStack does
October 20, 2024 at 6:55 am #26842Gregory
GuestYesterday we added skip cache to
wp_woocommerce_session_cookies along with the existing session ID logic being appended to requests:https://github.com/littlebizzy/slickstack/commit/0e2d4bdeb95547fb964b13cdeafd466366b85692
October 20, 2024 at 7:10 am #26843Tyler
GuestToday we also added
store_notice.*andwoocommerce_recently_viewedNote these are only for the “Recent viewed products” widget and store notices in Woo, which are not commonly used, but good to skip anyways:
https://github.com/littlebizzy/slickstack/blob/master/modules/nginx/sites/production.txt
October 20, 2024 at 6:48 pm #26844Jack
Guest👍🏻👍🏻👍🏻
-
AuthorPosts