Skip to content

Instantly share code, notes, and snippets.

@raftaar1191
Created February 28, 2023 04:33
Show Gist options
  • Save raftaar1191/3ef82540d6dcba7c0bdb1ce7ed132681 to your computer and use it in GitHub Desktop.
Save raftaar1191/3ef82540d6dcba7c0bdb1ce7ed132681 to your computer and use it in GitHub Desktop.
removing the product from the cart after a while?
add_filter('wc_session_expiring', 'so_26545001_filter_session_expiring' );
function so_26545001_filter_session_expiring($seconds) {
return 60 * 2; // 2 mints
}
add_filter('wc_session_expiration', 'so_26545001_filter_session_expired' );
function so_26545001_filter_session_expired($seconds) {
return 60 * 3; // 3 mints
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment