欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

购物车清除的php,php-如何清除废弃的woocommerce购物车

发布时间:2025/3/21 37 豆豆
生活随笔 收集整理的这篇文章主要介绍了 购物车清除的php,php-如何清除废弃的woocommerce购物车 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

我遇到了这段代码,该代码用于在某些页面加载时清除Woocommerce购物车.

但是,我想知道有没有办法在购物车被抛弃后对其进行清理?

For triggering only on front page your function needs to look like this:

add_action( 'init', 'woocommerce_clear_cart_url' );

function woocommerce_clear_cart_url() {

global $woocommerce;

if ( is_front_page() && isset( $_GET['empty-cart'] ) ) {

$woocommerce->cart->empty_cart();

}

}

function is_front_page() returns true only on front page of your wordpress site. Also, you might detect any other page with function is_page() where you can pass any page title, ID or slug

解决方法:

From what I can see, WooCommerce 2.0.20 has a scheduled maintenance job that runs twice/day that will remove any cart sessions from the WordPress options table. The default expiration time is set to 48 hours from the time the user first created the cart. I’m guessing your standard WordPress scheduling routines (and server cron/at jobs) will need to be running properly for this to execute.

AFAIK there is no way to adjust the 48 hour rule via settings. You could write a filter in your theme or in an “adjacent” plugin.

我对代码进行了一些调整,以切换到24小时课程.我不确定您是否希望每隔几分钟删除一次,因为这可能会导致性能提高.

add_filter('wc_session_expiring', 'so_26545001_filter_session_expiring' );

function so_26545001_filter_session_expiring($seconds) {

return 60 * 60 * 23; // 23 hours

}

add_filter('wc_session_expiration', 'so_26545001_filter_session_expired' );

function so_26545001_filter_session_expired($seconds) {

return 60 * 60 * 24; // 24 hours

}

标签:cart,php,wordpress,woocommerce

来源: https://codeday.me/bug/20191013/1906640.html

总结

以上是生活随笔为你收集整理的购物车清除的php,php-如何清除废弃的woocommerce购物车的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。