Product Tag Names

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
How can i list Product Tags in HomepageBestsellers razor page?
I use @model IList<ProductOverviewModel> but there is no tag fields.
4 years ago
If you need you can add "ProductTagModel" in "ProductOverviewModel".

For every product you can get product tag like :

var productTags = _productTagService.GetAllProductTagsByProductId(ProductId);


I hope this will help. Thanks.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.