Hi David
Is there any way to limit the number of results when using externalsearch without changing number in config file.
Regards
Brent
Hello Brent,
Sure - you can override $config_resultsPerPage immediately after config.php has been loaded in searchExternal.php. Look for the following code at line 44:
require_once($external_path."config.php");
...and REPLACE with:
require_once($external_path."config.php"); $config_resultsPerPage = 5;
...or as required.
Cheers, David. -- PriceTapestry.com
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hello Brent,
Sure - you can override $config_resultsPerPage immediately after config.php has been loaded in searchExternal.php. Look for the following code at line 44:
require_once($external_path."config.php");
...and REPLACE with:
require_once($external_path."config.php");
$config_resultsPerPage = 5;
...or as required.
Cheers,
David.
--
PriceTapestry.com