Created
August 11, 2026 05:38
-
-
Save rajeshsingh520/311626194a6bf50fdd9303af9b5544d8 to your computer and use it in GitHub Desktop.
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_action( 'init', function() { | |
| global $wpdb; | |
| $wpdb->query( | |
| " | |
| UPDATE {$wpdb->postmeta} | |
| SET meta_value = '' | |
| WHERE meta_key IN ( | |
| 'out_of_stock_product_preparation_time', | |
| 'out_of_stock_product_preparation_time_min', | |
| 'out_of_stock_product_preparation_time_max' | |
| ) | |
| AND meta_value = '0' | |
| " | |
| ); | |
| } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment