自动为Woocommerce上购买的产品设置特定的属性术语值

时间:2018-12-27 11:45:10

标签: php wordpress woocommerce product orders

我想在下订单并具有“保留”状态时自动向订购产品添加特定的属性值(先前已设置)。

我销售独特的产品,并且设置了“库存”属性和“缺货”(缺货)值。

下订单并具有“保留”状态时,我要自动更改订购产品的特色状态,并向其中添加缺货属性值。

特色部分已经完成并且可以使用,但是我不知道如何在产品中添加特定的属性值。

这是我的代码:

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();
    $product->set_featured(true);
    $product->set_attributes(???); // I don't know if and how set_attributes() should be used
    $product->save();
}

1 个答案:

答案 0 :(得分:1)

要将库存状态设置为“缺货”,您可以通过以下方式使用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文件中。应该可以。