在类别页面上向可配置产品添加文本
Add text to configurable products on category page
由于我使用的是带有自定义主题的 Magento 1.9.1,因此我无法使用样本的内置功能。
不过,我还是想证明一个产品有多种颜色可供选择。这显然只适用于可配置产品。它只需要显示文本 "More colors".
它可能看起来像这样:
<img src="blanket.png">
<span>More colors</span>
<span>€99,99</span>
我本来可以发图片的,但是我的名声太低了:(
不知道我是否理解你的需求,但是如果你想在产品类别的网格上显示消息"More Colors",你必须编辑列表文件,该文件位于
app / design / frontend / your-theme / yout-theme / template / catalog / product / list.phtml
你必须添加这样的东西
<?php
if ($_product->isConfigurable()) {
//content configurable
echo '<span>More Colors</span>';
} else {
// content if not configurable
}
?>
祝你好运!
由于我使用的是带有自定义主题的 Magento 1.9.1,因此我无法使用样本的内置功能。
不过,我还是想证明一个产品有多种颜色可供选择。这显然只适用于可配置产品。它只需要显示文本 "More colors".
它可能看起来像这样:
<img src="blanket.png">
<span>More colors</span>
<span>€99,99</span>
我本来可以发图片的,但是我的名声太低了:(
不知道我是否理解你的需求,但是如果你想在产品类别的网格上显示消息"More Colors",你必须编辑列表文件,该文件位于
app / design / frontend / your-theme / yout-theme / template / catalog / product / list.phtml
你必须添加这样的东西
<?php
if ($_product->isConfigurable()) {
//content configurable
echo '<span>More Colors</span>';
} else {
// content if not configurable
}
?>
祝你好运!