Woocommerce Set Cart Expiration Interval

前端 未结 2 1818
暗喜
暗喜 2020-12-11 09:10

I need to increase the expiration time of Woocommerce cart to 72 hours.

I\'ve tried the solution suggested here: set wordpress woocommerce cart expiration

Bu

相关标签:
2条回答
  • 2020-12-11 09:30

    The filter must return 72 hours, in seconds.

    add_filter('wc_session_expiring', 'filter_ExtendSessionExpiring' );
    add_filter('wc_session_expiration' , 'filter_ExtendSessionExpired' );
    
    function filter_ExtendSessionExpiring($seconds) {
        return 60 * 60 * 71;
    }
    function filter_ExtendSessionExpired($seconds) {
       return 60 * 60 * 72;
    }
    
    0 讨论(0)
  • 2020-12-11 09:36

    I had exactly this problem in a multi site set up and built a plugin to solve this. You can get the plugin here http://mtrl.co.uk/shop/product/woocommerce-cart-lifespan-settings-plugin/

    0 讨论(0)
提交回复
热议问题