You can regroup your fields in groups easily using the module interface
You can use drag and drop to move a field from one group to another or to sort groups within the same group
1. First, start by adding groups in the main configuration page of the module
If you configure a name for your field group, you can target it using css code like this if needed
1 2 3 4 5 6 7 8 |
.dp_group_[name] { } // example .dp_group_size { } |
2. Then, open your product and configure your fields in the field groups tab
- Pick a group and add it
- Move field to the added group
- Sort groups within the same group
Result
1 2 3 4 5 6 7 8 |
// targets every group .dp_group { } // default group (corresponds to "available fields") .dp_group_default { } // target group by name .dp_group_[name] { } |