Include WC Cart functions for REST API calls
This commit is contained in:
parent
61ee3eb46a
commit
4647efa840
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Load wc_empty_cart function for REST API calls.
|
|
@ -369,7 +369,11 @@ class WC_Session_Handler extends WC_Session {
|
|||
public function forget_session() {
|
||||
wc_setcookie( $this->_cookie, '', time() - YEAR_IN_SECONDS, $this->use_secure_cookie(), true );
|
||||
|
||||
wc_empty_cart();
|
||||
if( ! is_admin() ) {
|
||||
include_once WC_ABSPATH . 'includes/wc-cart-functions.php';
|
||||
|
||||
wc_empty_cart();
|
||||
}
|
||||
|
||||
$this->_data = array();
|
||||
$this->_dirty = false;
|
||||
|
|
Loading…
Reference in New Issue