Advertisement
Guest User

Woocommerce Bookings Abandoned cart time to 15 minutes

a guest
Feb 21st, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. /**
  2.  * Abandoned cart time to 15 minutes
  3.  * plugins/woocommerce-bookings/includes/admin/class-wc-bookings-tools.php:64
  4.  * By alhoseany@yahoo.com
  5.  */
  6. function custom_inactive_cart_time( $time ) {
  7.     $time = 15; // minutes
  8.     return $time;
  9. }
  10. add_filter( 'woocommerce_bookings_remove_inactive_cart_time', 'custom_inactive_cart_time' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement