Forked from stuart-lambon/woo-update-product-stock-qty.php
Created
January 22, 2024 09:39
-
-
Save gaelgerard/1eee5e7dd47ad1e8283917b2a1a5556f to your computer and use it in GitHub Desktop.
Revisions
-
stuart-lambon created this gist
Sep 9, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ <?php $sku = 'ITEM001'; $qty = 1; // Get product_id from SKU — returns null if not found $product_id = wc_get_product_id_by_sku( $sku ); // Process if product found if ( $product_id != null ) { // Check for negative stock (backorders etc.) and set to 0 if ( $qty <= 0 ) { $qty = 0; } // Set up WooCommerce product object $product = wc_get_product( $product_id ); // Make changes to stock quantity and save $product->set_manage_stock( true ); $product->set_stock_quantity( $qty ); $product->save(); }