因此,我们正在构建一个具有自定义页面的网站,该页面调用WooCommerce购物车中的商品。但是,一旦用户离开该页面,我们想做的就是清空购物车。这可能吗?
我们发现以下代码可能会对我们有帮助,但是当我们进入管理页面时,我们一直遇到致命错误,而这似乎只有在进入管理部分时才会发生:
致命错误:在第746行的
empty_cart()
中的null上调用成员函数/home/client/public_html/wp-content/themes/wp-theme/functions.php
这是我们的代码:
add_action( 'init', 'woocommerce_clear_cart_url' );
function woocommerce_clear_cart_url() {
global $woocommerce;
if ($_SERVER['REQUEST_URI'] !== 'https://www.oursite.com/fake-cart-page/') {
$woocommerce->cart->empty_cart();
}
}
提前谢谢!
答案 0 :(得分:1)
我们知道了!这就是我们所做的:
//we inserted a script in wordpress and put it in the head
add_action( 'wp_head', 'woocommerce_clear_cart_url' );
function woocommerce_clear_cart_url() {
global $woocommerce;
//we used the jquery beforeunload function to detect if the user leaves that page
?>
<script>
jQuery(document).ready(function($) {
$(window).bind('beforeunload', function() {
//Used WordPress to help jQuery determine the page we're targeting
//pageID is the page number of the page we're targeting
<?php if(!is_page(pageID)):
//empty the cart
$woocommerce->cart->empty_cart(); ?>
<?php endif; ?>
});
});
</script>
<?php } ?>
答案 1 :(得分:0)
谢谢!这也为我工作!我使用了一个名为“ Insert PHP Code Snippet”的插件,该插件可让您使用代码创建一个简码-在这种情况下,我复制并粘贴了上面的代码,并将页面ID更改为我的结帐页面的页面ID。然后,在结帐页面上,我插入了简码。非常感谢!