Чтобы установить статус запаса «Нет на складе», вы будете использовать метод WC_Product
set_stock_status()
следующим образом:
$product->set_stock_status('outofstock'); // Or "instock"
$product->save();
Чтобы установить термин атрибута продукта в подключенной функции (работадля переменных продуктов тоже) :
add_action('woocommerce_order_status_on-hold', 'order_status_on_hold_update_products', 20, 2);
function order_status_on_hold_update_products( $order_id, $order ) {
foreach ( $order->get_items() as $item_id => $item ) {
$product = $item->get_product();
// Handling variable products
$_product = $product->is_type('variation') ? wc_get_product( $item->get_product_id() ) : $product;
$_product->set_featured( true );
// Your product attribute settings
$taxonomy = 'pa_stock'; // The taxonomy
$term_name = "Out Of Stock"; // The term
$attributes = (array) $_product->get_attributes();
$term_id = get_term_by( 'name', $term_name, $taxonomy )->term_id;
// 1) If The product attribute is set for the product
if( array_key_exists( $taxonomy, $attributes ) ) {
foreach( $attributes as $key => $attribute ){
if( $key == $taxonomy ){
$attribute->set_options( array( $term_id ) );
$attributes[$key] = $attribute;
break;
}
}
$_product->set_attributes( $attributes );
}
// 2. The product attribute is not set for the product
else {
$attribute = new WC_Product_Attribute();
$attribute->set_id( sizeof( $attributes) + 1 );
$attribute->set_name( $taxonomy );
$attribute->set_options( array( $term_id ) );
$attribute->set_position( sizeof( $attributes) + 1 );
$attribute->set_visible( true );
$attribute->set_variation( false );
$attributes[] = $attribute;
$_product->set_attributes( $attributes );
}
$_product->save();
// Append the new term in the product
if( ! has_term( $term_name, $taxonomy, $_product->get_id() ) )
wp_set_object_terms($_product->get_id(), $term_slug, $taxonomy, true );
}
}
Код находится в файле function.php вашей активной дочерней темы (или активной темы).это должно работать.