woocommerce_fulfillment_before_delete
woocommerce_fulfillment_before_delete
Appears in: woocommerce.10.1.2
Hook Type: filter
Displaying hooks found in version: woocommerce.10.1.2apply_filters('woocommerce_fulfillment_before_delete') is found 1 times:
- /src/Internal/DataStores/Fulfillments/FulfillmentsDataStore.php line 298
* Filter to modify the fulfillment data before it is updated. * * @since 10.1.0 */ $data = apply_filters( 'woocommerce_fulfillment_before_delete', $data ); // Soft Delete the fulfillment from the database. global $wpdb; $data_id = $data->get_id(); $deletion_time = current_time( 'mysql' );