当用户离开Woocommerce中的某个页面时,清空购物车



因此,我们正在构建一个具有自定义页面的网站,该页面正在调用WooCommerce购物车中的项目。但我们想做的是,一旦用户离开该页面,就清空该购物车。这可能吗?

我们发现了这个代码,它可能会帮助我们,但当我们转到管理页面时,我们一直收到一个致命的错误,而这似乎只有在我们转到管理部分时才会发生:

致命错误:在第746行的/home/client/public_html/wp-content/themes/wp-theme/functions.php中对成员函数empty_cart()的null调用

这是我们的代码:

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();
}
}

提前谢谢!

我们想通了!这就是我们所做的:

//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 } ?>

谢谢!这对我也有效!我使用了一个名为";插入PHP代码段";,它可以让你用代码创建一个短代码——在这种情况下,我复制并粘贴了上面的代码,并将页面ID更改为我的结账页面的页面ID。然后,在结账页面上,我插入了快捷代码。非常感谢!

相关内容

  • 没有找到相关文章

最新更新