Let me rephrase what I need:
Example my shop sell pencils and pens. For pencil, we sell per box, and for pen we sell per piece.
How do the customer know if the price as in the shopping cart below is per box or piece?
@kobra: yes, it SEEMS pair "Name" and "Value" is what I need.
Your Shopping Cart Contents
Total Items: 3 Weight: 0lbs Amount: $9.00
Qty. Item Name Unit Total
2 Pencial B2 $2 $4
1 Parker Pen $5 $5
How do I display as
Your Shopping Cart Contents
Total Items: 3 Weight: 0lbs Amount: $9.00
Qty. Item Name Unit Total
2 Pencil B2 $2/box $4
1 Parker Pen $5/piece $5
Even I can add a read only name, and value box, piece, and then apply to each product, then do the mod so that it can appear in the product or shopping cart page as in 2nd example above, it's still a pain as I can't add this attribute when adding new product. I must add it later though Admin/Catalog/Attribute controller right?
Can't it be simpler or I must read more?