Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - manxminx

Pages: [1]
1
Took me a couple of hours, but finally figured out what was happening!

Line 262 of includes/page_header.php
Code: [Select]
$setvalue = $config['image_cells'] * $i;
This line sets the increasing value of the choices in setperpage_dropdown to the number of image cells per row

I have 5 image cells per row and wanted the set perpage_dropdown box choices to increase by 10 each time.

I altered Line 262 of includes/page_header.php to
Code: [Select]
$setvalue = 10 * $i;
This breaks the relationship of image cell number to setperpage_dropdown choice increase. Set Line 262 to 10 and dropdown box choices are 10, 20, 30, etc, regardless of the number of image cells per row. You can use any number you want instead of my '10'.

Ali.

Pages: [1]