在产品的自定义选项中添加自定义字段

时间:2015-01-20 08:29:01

标签: php magento-1.9

任何帮助将不胜感激, 我想在添加产品自定义选项时添加自定义字段 例如,标题,价格等 Please see this screen shot, This is the content from "Custom option" tab in the product edit/add

2 个答案:

答案 0 :(得分:0)

创建一个4字段表,其中包含Id(自动增量),IdProduct(作为产品的外键),Custom(作为String / Varchar),Value(作为String / Varchar)

当您需要有关某个产品的信息时,请从IdProduct中搜索。 你会得到一些像:

+---------+--------------------+
| Custom  | Value              |
+---------+--------------------+
| Title   | NameOfTheProduct   |
| Weight  | 12.326             |
| Price   | 3.45               |
| Date    | 2015-01-20 01:02:03|
| ...     |                    |
+---------+--------------------+

有时候你可能还需要一个字段才能知道如何转换值(String,Float,Date,...)

答案 1 :(得分:0)

megento_admin->目录 - >属性 - > manageAttributes 添加属性,然后在属性集中插入属性。 它将在产品插页中显示

了解更多信息:http://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/catalog_product_set/index