How to limit Latest Product display to 6 items

LiteCart Fan
Dari Canada
Anggota sejak Apr 2025

Hello, I hope I am asking this in the right thread.

I am wanting to reduce the number of "Latest Products" to only show 6 items, instead of the currently uneven number of 7 which currently makes a second row.

Where would I make this change, please?

Thank you,
Rene

LiteCart Fan
Dari Netherlands
Anggota sejak Des 2022
<section id="box-latest-products" class="card">

  <div class="card-header">
    <h2 class="card-title"><?php echo language::translate('title_latest_products', 'Latest Products'); ?></h2>
  </div>

  <div class="card-body">
    <div class="listing products columns">

      <?php 
    $i = 0;
    foreach ($products as $product) {    
        $i++;
        if($i < 7) {
            echo functions::draw_listing_product($product);  
        }          
    }
    ?>
    </div>
  </div>

</section>
LiteCart Fan
Dari Canada
Anggota sejak Apr 2025

Whew!! Thank you again. I got it working now.

LiteCart Fan
Dari Thailand
Anggota sejak Agu 2017

?
Admin/Setting?listing/Latest Products Box: Number of Items
and you set the number you want

LiteCart Fan
Dari Netherlands
Anggota sejak Des 2022

Oh....it's so easy. I was not aware of that

LiteCart Fan
Dari Canada
Anggota sejak Apr 2025

I did not know where to look for it. Thank you to BOTH of you!!

Anda
This website uses no cookies and no third party tracking technology. We think we can do better than others and really think about your privacy.