VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: lumen on June 25, 2017, 11:06:48 AM

Title: Show groupt title of customfields
Post by: lumen on June 25, 2017, 11:06:48 AM
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,
Title: Re: Show groupt title of customfields
Post by: K&K media production on June 25, 2017, 13:02:47 PM
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;