开发者

How can I remove or edit the per page section in Products list (X-cart)

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

}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜