Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to change number of NEW products?


Guest

Recommended Posts

Posted

Hello.

 

I have a new template installed and I would like to have displeyed 6 new products. 3 rows and in each row only 2 products. I can change the number of displayed products, but i can't find how to change the number od collums. Where can I change that?

 

tnx

Posted

In: catalog/includes/modules/new_products.php

 

About line 36 change the number to ($col > 1)

 

<?php
$col ++;
if ($col > 1) {
$col = 0;
$row ++;
}
?>

 

The counter starts at 0, not at 1.

1 = 1 column = 2 products per row

2 = 2 columns = 3 products per row

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...