Как добавить в icml производителя
-
Добрый день!
Подскажите как добавить в каталог вендора, если это таксономия$product_data = array( 'id' => $product->get_id(), 'productId' => ($this->get_parent_product($product) > 0) ? $parent->get_id() : $product->get_id(), 'name' => $product->get_name(), 'productName' => ($this->get_parent_product($product) > 0) ? $parent->get_title() : $product->get_title(), 'price' => $this->get_price_with_tax($product), 'purchasePrice'=> WC_COG_Product::get_cost($product), 'vendor'=> get_the_terms( $product, 'pa_proizvoditel' ), 'picture' => $image[0], 'url' => ($this->get_parent_product($product) > 0) ? $parent->get_permalink() : $product->get_permalink(), 'quantity' => is_null($product->get_stock_quantity()) ? 0 : $product->get_stock_quantity(), 'categoryId' => $term_list, 'dimension' => $dimension, 'weight' => $weight, 'tax' => isset($tax) ? $tax['rate'] : 'none'
в частности как вы видите я добавил себестоимость, но vendor не могу, что не так в конструкции?
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Как добавить в icml производителя’ is closed to new replies.