Advertisement
wpgenie

extend auction end time on every bid placed

Mar 13th, 2018
2,853
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. add_action( 'woocommerce_simple_auctions_outbid', 'woocommerce_simple_auctions_extend_time', 50 );
  2. add_action( 'woocommerce_simple_auctions_proxy_outbid', 'woocommerce_simple_auctions_extend_time', 50 );
  3.  
  4. function woocommerce_simple_auctions_extend_time($data){
  5.     $product = get_product( $data['product_id'] );
  6.     if ('auction' === $product->get_type() ){
  7.         $date1 = new DateTime($product->get_auction_dates_to());
  8.         $date1->add(new DateInterval('PT30S'));
  9.         update_post_meta( $data['product_id'], '_auction_dates_to', $date1->format('Y-m-d H:i:s') );
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement