- 9
Hi,
-I have configured the catalog listing in public store to show 4 product box per grid line in grid view
by changing the following code @(Html.DataList7Spikes<ProductOverviewModel>(Model.Products,3,
@<div class="item-box">
@Html.Partial("_ProductBox", item)
</div>
))
in CategoryTemplate.ProductsInGridOrLines.cshtml
to @(Html.DataList7Spikes<ProductOverviewModel>(Model.Products,4,
@<div class="item-box">
@Html.Partial("_ProductBox", item)
</div>
))
when I first click on a category it shows 4 product per grid line as expected but when using the ajax filters like the price specs or attributes it then shows 3 product box per line even if the search result return more than 4 products
How can I solve this problem
- I have manage to configure the catalog in public store so when clients hover a image it will change to another one how can I leave the quick view but instead of showing it on hover I want it to always be shown like for example in place of the add cart button
Thanks
-I have configured the catalog listing in public store to show 4 product box per grid line in grid view
by changing the following code @(Html.DataList7Spikes<ProductOverviewModel>(Model.Products,3,
@<div class="item-box">
@Html.Partial("_ProductBox", item)
</div>
))
in CategoryTemplate.ProductsInGridOrLines.cshtml
to @(Html.DataList7Spikes<ProductOverviewModel>(Model.Products,4,
@<div class="item-box">
@Html.Partial("_ProductBox", item)
</div>
))
when I first click on a category it shows 4 product per grid line as expected but when using the ajax filters like the price specs or attributes it then shows 3 product box per line even if the search result return more than 4 products
How can I solve this problem
- I have manage to configure the catalog in public store so when clients hover a image it will change to another one how can I leave the quick view but instead of showing it on hover I want it to always be shown like for example in place of the add cart button
Thanks