Adding product custom fields |
Top Previous Next |
1. Go to CMS Site Manager -> Development -> System tables.
2. Click Edit next to the Ecommerce - SKU.
3. Click New Attribute.
4. Into the Attribute name text box, enter SKUColor. Choose Text as Attribute type, enter 100 as Attribute size and Product color as Field Caption. Choose Text box as Field Type. Click Ok.
5. Now switch to CMS Desk and go to Tools -> E- commerce -> Products. Click Edit next to Acer Aspire 3105WLMi.
6. Switch to the Custom fields tab and enter Blue into the Product color text box. Then click Ok.
That's how you create a custom field for all products and how you set its value for specific product.
Product custom fields in transformations
For displaying values of the given custom field in transformation, enter Eval("<custom field name>"). For instance, for the example given in this chapter, you would enter Eval("SKUColor") (please see the Customizing product design chapter for more details).
In versions prior to 4.0, you had to update the following database views manually with the name of the new custom field in order for the Eval("<custom field name>") to work correctly. Now it is done automatically so that you don't need to modify the database at all.
1) View_COM_SKU 2) View_CMS_Tree_Joined 3) View_CMS_Tree_Joined_Versions
Product custom fields in code
In code, you can get and set the given value in the following way:
|