firestormza

Results 16 comments of firestormza

Are you using the source or the latest 0.8.3 release? It should be fixed in #600 but has not been released yet. Build from the source and check please.

Also note that `WCObject.MetaDisplayValueProcessor` was added if you need to parse the display_value object. [#612 (comment)](https://github.com/XiaoFaye/WooCommerce.NET/issues/612#issuecomment-861206005)

> Same problem here. Also version 0.8.3. Any workaround? You'll have to compile the source code.

Your problem does not lie with WooCommerce.NET but with how you're coding your application. I'd suggest reading up on asynchronous programming.

The WooCommerce REST API does not support variation batches for multiple products. See [Batch Update Product Variations](https://woocommerce.github.io/woocommerce-rest-api-docs/#batch-update-product-variations) on the Woo API Docs

Fixed in PR #600. Build from source and test please. The problem is that the display_value node is not being parsed correctly. You will have to parse the meta_data of...

There is no tracking number property in the Woo API. If using an external plugin you'll have to de-serialize the object yourself from meta_data. [See here](https://github.com/XiaoFaye/WooCommerce.NET/wiki/Handle-different-types-of-Meta-Value-in-WC-Restful-API-V2)

You will have to do something like this: ``` var prod = new WooCommerceNET.WooCommerce.v3.Product(); prod.regular_price = 100m; // If regPrice == salePrice Woo will actually clear the sale price prod.sale_price...

Good day, I see there is a problem. I've submitted a pull request to fix it. #598 I see the totals property is also not being de-serialized correctly, so for...

This was fixed with PR #600 You'll have to get the source and build it.