I need to edit some css but I couldn't find the place to change the template for per pa开发者_Go百科ge dropdownlist
I guess the code is generated by $content variable but how can I modify it ???
If you have a clue, please answer me... thanks for advance
You need this template: /skin/common_files/customer/main/per_page.tpl
Change function in {root}/include/search.php file/
For example:
$perPageValues = array();
for ($i = 50; 460 >= $i; $i = $i + 100) {
$perPageValues[] = $i;
}
$smarty->assign('per_page', 'Y');
$smarty->assign('per_page_values', $perPageValues);
}
精彩评论