mihailo82 wrote:Please,
Could anyone help me with setting number of items in home-page-category-grid div on home page.
Thanks a lot.
Hi mihailo82,
Unfortunately there is no setting in nopCommerce that can set the number of visible categories on the home page. nopCommerce shows all the categories that are marked with "Show on home page".
But you can limit them directly in the Razor view file.
For example if you want to show maximum 3 categories you can do it like this.
Open this file: Themes\Smart\Views\Catalog\HomepageCategories.cshtml
Change this line:
@foreach (var item in Model)
To be:
@foreach (var item in Model.Take(3))
You can change the number to meet your needs.