Support forum login

©2006-2012 IAAI Software

Contact Us Privacy Policy

External - Increasing Number Of Rows of Results

Submitted by Stew on Tue, 2010-08-24 14:36.

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

Submitted by support on Tue, 2010-08-24 15:05.

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

Submitted by Stew on Fri, 2010-09-10 09:49.

Forgot to say thanks - works a treat.