Hide labels in DetailView

Hi,
I tried add a parameter hideLabel to custome field in file custom/modules/Accounts/metadata/detailviewdefs.php and doesn’t work.
Quick repair after change was done, but unfortunetely any change.

array (
        0 => 
        array (
          0 => 
          array (
            'name' => 'piwigo_c',
            'label' => 'LBL_PIWIGO',
            'hideLabel' => true,
          ),
        ),
      ),

What made you think that would work? Where are you getting that example from?

And more importantly, what are you trying to achieve?

Hi
I think that is looking to work in EDITVIEW only and not in detail view. If you want to hide the labels.
One possibility is to create a new label with EMPTY value and can use this one in detail view metadata.

Like this in language file

‘LBL_BLANK’ => ‘’,

and in detail view metadata

array (
            'name' => 'piwigo_c',
            'label' => 'LBL_BLANK',
          ),

Thanks