Changing amount of products shown in grid view

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
I have increased the width of the pages to 1000px, i also shortened the width on the products gridview boxes so that 3 fit well inside the div. I went into ~Templates/Categories/ProductsInGrid.ascx.cs (through ftp using VS 2010) and changed the code for "pageSize" to 24. I saved the file and VS said it was uploading to the site yet my gridview only pulls up 10 items per page.


//page size
            int totalRecords = 0;
            int pageSize = 24;
            if (category.PageSize > 0)
            {
                pageSize = category.PageSize;
            }

here is a link if you need it http://casejunkie.com/category/15-gel-tpu-cases.aspx

Thanks for the help,
Chan
13 years ago
Go to your category details (admin area), then SEO tab and set "Page size" to 24
13 years ago
I feel a little more brain dead now..... LOL. Thank you!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.