0

I need to edit some css but I couldn't find the place to change the template for per page 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

2 Answers2

0

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);

}
0

You need this template: /skin/common_files/customer/main/per_page.tpl

classic
  • 544
  • 2
  • 7