You are here:  » Search results

Support Forum



Search results

Submitted by Henk3001 on Thu, 2007-02-08 11:55 in

Hi,

Is it possible to have a 10 search results and more compare results.

Thx
HEnk

Submitted by support on Thu, 2007-02-08 12:03

Hi Henk,

Sure; you just need to override $config_resultsPerPage at the top of products.php. For example:

<?php
  
require("includes/common.php");
  
// add this line with the number of compare results you want
  
$config_resultsPerPage 20;
  
// rest of script
?>

Cheers,
David.