Some Theory
Difference Between Product Options and Attributes in OpenCart
In OpenCart, options and attributes serve different functions for a product. Below are the main differences between them.
1. Functional Purpose
Options
- Used to create product variations that affect price, stock availability, weight, or reward points.
- Examples: size, color, delivery date, file upload.
- Can modify the final product cost (e.g., +$10 for selecting the white color).
- Must be selected before adding the product to the cart (if marked as "Required").
Options allow the creation of variable products, such as clothing in different sizes or phones in different colors.
Attributes
- These are static technical parameters that describe product properties but do not influence the order.
- Examples: material, weight, screen resolution, country of origin.
- Displayed on the product page for customer information.
Attributes help customers better understand the product specifications but do not affect the purchasing process.
2. Selection Requirement
- Options can be required (e.g., clothing size) or optional (e.g., name engraving). If an option is required, the user cannot add the product to the cart without selecting it.
- Attributes are always optional for interaction—they are only used for describing the product.
3. Data Types and Configuration
Options
- Support various input types:
- Selection (radio buttons, dropdown list, checkboxes),
- File (user file upload),
- Date/Time,
- Text fields.
- Configured in Catalog → Options and then assigned to a product through the "Options" tab in the product page.
Attributes
- Only support text format.
- Created in Catalog → Attributes and added to a product via the "Attributes" tab.
Options are more flexible as they allow different input types.
4. Impact on Cart and Order
- Options appear in the cart and affect the final price, stock quantity, or order weight. For example, selecting size 46 reduces the stock count.
- Attributes do not appear in the cart and are not considered during order processing.
5. Flexibility of Use
- Options allow linking products via modules (e.g., "Option as a Product Link"), creating linked variations without duplicating product pages.
- Attributes are used for filtering products on the site, but their functionality is limited without additional modules.
Example for Clarity
Product: Smartphone
- Options: color (black/white, +$20 for white), storage capacity (128GB/256GB).
- Attributes: screen size (6.5 inches), weight (200g), OS (Android).
Summary
- Options — a tool for managing product variability and the purchasing process.
- Attributes — a way to provide detailed product information.
For advanced use (e.g., dynamically changing price based on options), additional modules may be required.
Attribute Structure in OpenCart
Basic Hierarchy
OpenCart uses a three-level structure for attributes:
Attribute Group
└── Attribute
└── Attribute Value (text field)
Attribute values are linked to specific products. If no value is provided, attribute analysis is not possible.
Connection with Products
Structure for an individual product:
Product
├── Attribute Link (from group)
└── Attribute Value (can contain multiple values separated by a delimiter)
Attribute "Color" → Values "Red; Blue; Green"
Attribute Functionality
-
Multiple Values
- Any product can have multiple attributes.
- Any attribute can contain multiple values (separated in a text field).
-
Attribut&co Module
Attribute Group
└── Attribute
└── Value 1
└── Value 2
└── Value 3
- Visualizes the structure as a tree list.
- Simplifies attribute navigation and editing.
The module does not change the data storage structure, only improves the admin interface.
Attribute Linking with Categories
Logical structure:
Product Category
└── Attribute
└── Attribute Value (list of values)
Implementation:
- Relationships are stored in the database table
category_attribute
. - Allows linking specific sets of attributes to certain categories.
Example category_attribute
table structure:
category_id | attribute_id |
---|---|
15 | 27 |
15 | 34 |
22 | 41 |
This allows attributes to be automatically assigned to all products in a category (e.g., "Screen Size" for the "TVs" category).
Final Scheme
- Attribute Groups → for organization.
- Attributes → technical product specifications.
- Values → specific data (required for analysis).
- Categories → linking attributes to product groups.
Without assigned values, attributes remain "empty labels" and provide no useful information.