You can choose to display each group in a different way. The available options are:
- Standard – the fields are displayed in a standard list format
- Table – the fields within the group are laid out in a table format
- Two columns – the fields within the group are displayed in two columns
- Three columns – the fields within the group are displayed in three columns
To set the group’s layout, just adjust the ‘Group layout’ setting:

Displaying groups
In the Pro version of the plugin, you can choose how to display groups:
- Standard
- Tabs
- Accordion
Jut go to the Product Add-Ons section in the Product data section and choose the layout in the ‘Display groups as’ field.

Setting global group layout
Note that the above method works if you are adding groups directly to products. Any global groups that are also added to the product will follow the product’s group layout.
However, if you don’t have any groups added directly to a product because all your groups are global, please use this snippet to ensure your groups display as a tab or accordion:
<?php | |
function prefix_group_display( $display ) { | |
return 'accordion'; | |
} | |
add_filter( 'pewc_group_display', 'prefix_group_display' ); |
Here’s how to add a snippet.