【发布时间】:2015-07-14 14:21:35
【问题描述】:
添加到购物车按钮未显示在主页的产品上。 在类别/搜索页面上显示但不在主页上。 我正在使用 magento CE1.9
【问题讨论】:
-
你在主页显示什么?静态内容?相关的,最新的,特殊产品模块?我们需要更多信息
-
静态内容和新产品模块。你可以查看我的网站 www.sevaaa.com
标签: magento
添加到购物车按钮未显示在主页的产品上。 在类别/搜索页面上显示但不在主页上。 我正在使用 magento CE1.9
【问题讨论】:
标签: magento
添加到购物车按钮链接已隐藏。
在你的 css 中(你有 madisonisland.css 第 182 行)
.cms-index-index .products-grid .ratings, .cms-index-index .products-grid .actions, .cms-index-noroute .products-grid .ratings, .cms-index-noroute .products-grid .actions {
display: none;
}
如果您想显示添加到购物车的链接,请将 display:none 更改为 display:block
【讨论】: