post_name; if ( ! is_null( $checkout_page ) ) $wc_page_uris[] = '/' . $checkout_page->post_name; if ( ! is_null( $account_page ) ) $wc_page_uris[] = '/' . $account_page->post_name; set_transient( 'woocommerce_cache_excluded_uris', $wc_page_uris ); } if ( is_array( $wc_page_uris ) ) foreach( $wc_page_uris as $uri ) if ( strstr( $_SERVER['REQUEST_URI'], $uri ) ) { $this->nocache(); break; } } /** * Set nocache constants and headers. * * @access private * @return void */ private function nocache() { if ( ! defined( 'DONOTCACHEPAGE' ) ) define( "DONOTCACHEPAGE", "true" ); nocache_headers(); } /** * notices function. * * @access public * @return void */ public function notices() { if ( ! function_exists( 'w3tc_pgcache_flush' ) || ! function_exists( 'w3_instance' ) ) return; $config = w3_instance('W3_Config'); $enabled = $config->get_integer( 'dbcache.enabled' ); $settings = $config->get_array( 'dbcache.reject.sql' ); if ( $enabled && ! in_array( '_wc_session_', $settings ) ) { ?>

database caching to work with WooCommerce you must add _wc_session_ to the "Ignored Query Strings" option in W3 Total Cache settings here.', 'woocommerce' ), admin_url( 'admin.php?page=w3tc_dbcache' ) ); ?>