Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Opencart 1.4.9.3 并为类别安装了左侧模块。
我有2个问题,希望有人能帮助解决。
我有默认的类别代码(没有改变),并尝试了一些事情,比如改变一些 category_id 设置,但没有任何效果。它要么删除所有类别,要么显示所有类别。
我基本上希望类别模块像细化搜索模块一样运行。我还查看了要购买的模块,但找不到任何我需要的工作。
谢谢
要在除搜索页面之外的所有页面上隐藏 mod,请尝试在新行/catalog/controller/module/category.php之后将其添加到文件中function index()
/catalog/controller/module/category.php
function index()
if(empty($this->request->get['route']) || $this->request->get['route'] != 'product/search') { return false; }