magento admin中自定义属性和管理属性的混淆

时间:2013-06-21 09:56:22

标签: php magento custom-attributes

我完全混淆属性请帮助我。我不断做这个属性任务3天,但没有输出。

这是一个截屏: - enter image description here

此处为管理员面板: - enter image description here

这不是我想要的产品列表页面中的灰色和粉红色值.C:\ wamp \ www \ magento \ app \ design \ frontend \ base \ default \ template \ catalog \ product \ list.phtml

表示我的产品列表页面中自定义属性的值。 请帮助我如何获得这个价值......

使用管理属性/属性集我得到了值:

$size= $_product->getResource()->getAttribute('size')->getFrontend()->getValue($_product) ;//this are simple attributes
$color= $_product->getResource()->getAttribute('color1')->getFrontend()->getValue($_product) ;//this is simple attributes

看到这是我的可配置产品: - http://easycaptures.com/fs/uploaded/672/6732454339.jpg

1 个答案:

答案 0 :(得分:1)

我认为你需要创建“可配置产品”才能做你想做的事。 示例将允许您创建具有不同颜色变体的服装产品:

  1. 在“管理属性”中创建新属性“颜色”并添加 你的颜色
  2. 在“管理”中创建新的属性集“衣服” 属性集“
  3. 将颜色属性添加到属性集
  4. 在“管理产品”上创建新产品
    • 选择“属性集”(衣服)
    • “产品类型”是“可配置产品”
  5. 完成产品详细信息后,请保存产品并返回编辑状态 它再次。
  6. 点击最后​​一个标签“关联产品”并使用“快速简单产品创建”工具,创建颜色变化。
  7. 保存,重新索引并在前端检查您的产品。
  8. 您不需要编辑任何代码。我希望这有帮助!