Hi there am a bit stuck, am trying to increase the number of results rows in the external.php
At the moment I have 12 products displayed per page in 3 rows of 4 products.
Any ideas how I would increase to 16 products over 4 rows?
Many Thanks
Hi Stew,
external.php should follow $config_resultsPerPage in config.php so changing that to 16 should do the trick. If you wish to override this in external.php only, you can override it by searching for the following code in external.php:
require_once($external_path."config.php");
...and REPLACE with:
require_once($external_path."config.php"); $config_resultsPerPage = 16;
Cheers, David. -- PriceTapestry.com
Forgot to say thanks - works a treat.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Stew,
external.php should follow $config_resultsPerPage in config.php so changing that to 16 should do the trick. If you wish to override this in external.php only, you can override it by searching for the following code in external.php:
require_once($external_path."config.php");
...and REPLACE with:
require_once($external_path."config.php");
$config_resultsPerPage = 16;
Cheers,
David.
--
PriceTapestry.com