How to limit Latest Product display to 6 items

LiteCart Fan
Depuis Canada
Membre depuis avr. 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
Depuis Netherlands
Membre depuis déc. 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
Depuis Canada
Membre depuis avr. 2025

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

LiteCart Fan
Depuis Thailand
Membre depuis août 2017

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

LiteCart Fan
Depuis Netherlands
Membre depuis déc. 2022

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

LiteCart Fan
Depuis Canada
Membre depuis avr. 2025

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

Vous
Ce site n'utilise aucun cookie ni aucune technologie de suivi tierce. Nous pensons pouvoir faire mieux que les autres et nous nous soucions vraiment de votre vie privée.