You are going to want to follow the logic used in your template
ie if this exists
templates/cre63_ats/includes/modules/products_listing.php
if not
includes/modules/products_listing.php
open it up
includes/languages/english/shop_by_price.php
add this to the bottom, before the
Code:
?>
Code:
define('MAX_DISPLAY_SEARCH_RESULTS_ROW', '6');
so it looks like this
Code:
define('MAX_DISPLAY_SEARCH_RESULTS_ROW', '6');
?>
Now open up
includes/modules/products_listing.php
find
Code:
$listing_split = new splitPageResults($listing_sql, MAX_DISPLAY_SEARCH_RESULTS, 'p.products_id');
change it to
Code:
$listing_split = new splitPageResults($listing_sql, MAX_DISPLAY_SEARCH_RESULTS_ROW, 'p.products_id');
let me know at this point if it now limits rows displaying as 6 products (although the text links may be displaying the wrong value which we will also change