Created
February 28, 2023 04:33
-
-
Save raftaar1191/3ef82540d6dcba7c0bdb1ce7ed132681 to your computer and use it in GitHub Desktop.
removing the product from the cart after a while?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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