如何删除或编辑产品列表中的每页部分 (X-cart)

发布于 2024-11-26 01:44:20 字数 108 浏览 1 评论 0原文

我需要编辑一些 css,但我找不到更改每页下拉列表模板的位置,

我猜代码是由 $content 变量生成的,但我该如何修改它???

如果您有线索,请回答我...提前感谢您

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑看君怀她人 2024-12-03 01:44:20

您需要此模板:/skin/common_files/customer/main/per_page.tpl

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

壹場煙雨 2024-12-03 01:44:20

更改 {root}/include/search.php 文件/中的函数

例如:

    $perPageValues = array();

    for ($i = 50; 460 >= $i; $i = $i + 100) {
        $perPageValues[] = $i;
    }

    $smarty->assign('per_page',         'Y');
    $smarty->assign('per_page_values',  $perPageValues);

}

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

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文