Hi,
I am wondering how it is possible to show the group title of customfields. I would like to have something like:
Group title1
Custom field1
Custom field2
Group title2
Custom field3
Custom field4
...
VirtueMart 3.2.2
Joomla! 3.7.2
Many thanks for any hints,
Groups are only for grouping some fields for a better handling on product edit. There is no frontend output.
If you have some PHP knowledge you can built it by yourself.
You need a template override for components/com_virtuemart/sublayouts/customfield.php
There are cases for each field type. Group is type G and there is no case for type G, but you can add a case.
case 'G' :
$customfield->display = ' ';
break;