firestormza
firestormza
If you set the SalePrice == RegularPrice it will clear the sale price.
You need to retrieve the notes for each order using the Order Notes endpoint: ``` List notes = await wc.Order.Notes.GetAll( orderId ); ``` [See Woo Docs](https://woocommerce.github.io/woocommerce-rest-api-docs/#order-notes)
Good day @nvsoares, > I think the problem is at deserialization. Because Setting.Get([SettingId]) returns a Setting, but the server responds an array of settings. You are 100% correct with your...
Good day @nvsoares, Upon further investigation I see that these extension methods have already been implemented in the library. **Important:** Reference the required extensions ``` ... using WooCommerceNET.WooCommerce.v3.Extension; ... ```...
This could be due to an error on the WooCommerce side. I've submitted a pull request to fix this. #600 Either get my code or you could intercept the response...
> For windows 11 this worked for me. From within the android-studio folder > > ``` > New-Item -ItemType SymbolicLink -Path .\jre -Target .\jbr > ``` Just upgraded to Electic...