1

我经营一家 Magento 商店,我们希望在没有库存管理的情况下运行它,但无论库存状态如何,都会显示所有商品。

我已关闭库存管理并拥有我想要显示的所有内容,但我找不到从搜索结果、类别和品牌视图中删除“可用性:库存”消息的方法。我怎样才能阻止它显示?

我找到了对 style.css 文件的编辑,但这只会将其从产品页面中删除,而不是从搜索结果、类别和品牌列表中删除。

4

3 回答 3

0

this will be in your theme's list.phtml file. Go here;

Mage Root/app/design/frontend/XXX/YYY/template/catalog/product/list.html

You will find the logic for displaying the message in there.

XXX/YYY will be the path of your particular theme. In the unlikely event that your theme doesnt have a list.phtml file, then check here;

Mage Root/app/design/frontend/base/default/template/catalog/product/list.phtml
于 2015-04-22T14:43:29.247 回答
0

导航到 styles.css 并向下滚动,直到找到 /* Availability */ 并将下面的第一行更改为:- .availability { margin:0;display:none; }

如果您有可配置的产品,则需要重新索引目录以重新链接子产品。同时清除所有缓存。

于 2016-06-04T09:51:42.277 回答
0

在 Magento 1.9.2.4 中,这是在里面app/design/frontend/base/default/template/cataloginventory/stockqty/default.phtmlapp/design/frontend/base/default/template/cataloginventory/stockqty/composite.phtml你应该在里面app/design/frontend/default/MYTHEME/template/cataloginventory/stockqty/或者里面写你自己的app/design/frontend/MYPACKAGE/MYTHEME/template/cataloginventory/stockqty/

否则下降

.availability-only {
  display: none;
}

进入 style.css

于 2016-04-15T14:32:50.667 回答