Solve the Dede search page can only display 10 information solutions, feeling that the information displayed is too little, then we have to find a way to solve. See if there is any good way to solve this problem.
Dede the search page template, only 10 records are displayed by default.
Open Dede Search page template search.htm, discover label search {dede:list perpage= ' 10 '}
Even if the parameter is modified, such as {dede:list perpage= ' 20 '}, the result of finding the search page for Dede search is still a page of 10 records.
There are two ways to solve this problem:
1. You can add <input type= "hidden" name= "pagesize" value= "*" in front of the start Search button of the Dede template>
Where the Red "*" is replaced with the number of bars you want to display.
2. Change 10 of plus/search.php file $pagesize to the number of files you want to show!
Resolve Dede Search page can only display 10 message solutions