You are here:  » Limit search results

Support Forum



Limit search results

Submitted by clare on Mon, 2011-08-01 08:11 in

Hi,
Is it possible to put a limit on the number of search results returned in the ordinary whole database search? Say to 1000 results only?

Submitted by support on Mon, 2011-08-01 13:57

Hi Clare,

It would be inefficient to restrict at the database level, but it can be artificially limited easily; in your search.php look for the following line;

    if ($resultCount)
    {

...and REPLACE with:

    if ($resultCount)
    {
      $resultCountMax = 1000;
      if ($resultCount > $resultCountMax) $resultCount = $resultCountMax;

Cheers,
David.
--
PriceTapestry.com