Sergei

Results 8 comments of Sergei

I guess by default woocommerce API returning only 6 products, try to chage value in wordpress by adding bellow code in functions.php function maximum_api_filter($query_params) { $query_params['per_page']['maximum'] = 10000; $query_params['per_page']['default'] =...

Try to use Linq for filtering ,for example Get the list of products and then filter it var query = await Task.Run(() => { return product.Where(x => x.id == "11545");...

My apoligies if i am not fully understood your qestion. but i see in your dictionary myDict.Add("meta_key", "id_article_mercator"); i guess this is not correct key and value which you trying...

You have some additional properties which is not bound by this awesome package correct? just create additional class and derive from WooCommerceNET.WooCommerce.v3.Product, for your model for example bellow public class...

Hello, as i mentioned before, you have extra property which is not included by default. If you want to get all products by WooCommerce.NET and include your extra property you...

Hi :) you not creating instance of Class. typo error :)) it should be like this var p = new ProductsX { name = "sample", //bla bla all fields acf.id_article_meractor...

Hi! :) I am assuming that you missing to put in attribute Name prop. let me know your contact info.

Yes it works fine, It's very simple by using WooCommerce.NET. Create a dictionary with products meta and assign to method. var dic = new Dictionary(); dic.Add("lang", "en"); WCObject wc =...