Ucommerce search not support the searching for Category description
Hi,
I want to search the text in category description using ucommerce search. Currently it search well in products, but when I give any text from category description in ucommerce search, it returns no result.
Simple Search 4 uCommerce is a third party extension for uCommerce. I'm not sure whether they plan to include category search. It's pretty simple to do the search using LINQ to uCommerce though:
var categories = Category.All().Where(x => x.CategoryDescriptions.Where(y => y.Description.Contains("Software")).Count() >= 1);
I cannot as it wasn't created by me. You'll have to get in contact with Rene Pjengaard and ask him if would share the source with you. Here's his profile on Our http://our.umbraco.org/member/3458
Ucommerce search not support the searching for Category description
Hi,
I want to search the text in category description using ucommerce search. Currently it search well in products, but when I give any text from category description in ucommerce search, it returns no result.
Any idea...
Thanks,
Usman
Simple Search 4 uCommerce is a third party extension for uCommerce. I'm not sure whether they plan to include category search. It's pretty simple to do the search using LINQ to uCommerce though:
Hi Soren,
Can you give me the code of this project?
Thanks
Amna
I cannot as it wasn't created by me. You'll have to get in contact with Rene Pjengaard and ask him if would share the source with you. Here's his profile on Our http://our.umbraco.org/member/3458
OK Thanks
is working on a reply...