Question how to increase search result number

Status
Not open for further replies.

arabuser

Customer
how to increase search result number per page or category browsing files. which template or file i should edit to increase maximum number for search results for example to make it 30 files per page or more.
 
Open /dbtech/downloads/actions/search.php and find
PHP:
	$vbulletin->input->clean_array_gpc('r', array(
		'page'  	=> TYPE_UINT,
		'perpage'   => TYPE_UINT,
		'params'    => TYPE_ARRAY,
	));

Underneath add
PHP:
	if (!$vbulletin->GPC['perpage'])
	{
		$vbulletin->GPC['perpage'] = 30;
	}
 
In that case I won't be able to assist further, as changing the pagination in that manner isn't directly supported.
 
Status
Not open for further replies.

Legacy vBDownloads

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
1,713
Customer rating
0.00 star(s) 0 ratings
Back
Top