Page 1 of 1
add rows to category and product pages
Posted: Thu Jul 30, 2009 2:25 am
by ronnietx
Does anyone know how to add more rows to the category and product pages ?
I know how to add more rows to latest product page
Re: add rows to category and product pages
Posted: Thu Jul 30, 2009 9:32 pm
by ronnietx
anyone

Re: add rows to category and product pages
Posted: Thu Jul 30, 2009 9:40 pm
by Qphoria
Yes we all know. We just aren't telling you!
Edit: catalog/controller/product/category.php
Find: $results = $this->model_catalog_product->getProductsByCategoryId($category_id, $sort, $order, ($page - 1) * 12, 12);
Change the last two 12's to something else
Re: add rows to category and product pages
Posted: Fri Jul 31, 2009 1:31 am
by ronnietx
thanks!
do you know how i can get the categories down to 3 columns instead of 4. I have all of the other pages down to 3 columns but can not find where to set the columns for the category page
Re: add rows to category and product pages
Posted: Fri Jul 31, 2009 1:54 am
by Qphoria
EDIT:catalog/view/theme/default/template/category.tpl
FIND:
<td width="25%">
CHANGE TO:
<td width="33.3%">
Re: add rows to category and product pages
Posted: Fri Jul 31, 2009 3:20 pm
by yuwenlong126
Qphoria wrote:EDIT:catalog/view/theme/default/template/category.tpl
FIND:
<td width="25%">
CHANGE TO:
<td width="33.3%">
thanks