开发者

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

开发者 https://www.devze.com 2023-03-23 03:15 出处:网络
I need to edit some css but I couldn\'t find the place to change the template for per pa开发者_Go百科ge dropdownlist

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

精彩评论

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