Hi, I'm using this module in drupal 9.
Radios option to view element title and hide option label.
file: webform_checkboxes_table.info.yml -- line 4
- core: 8.x
+core_version_requirement: 9.x
file: WebformCheckboxesTable.php -- line 36
- if (!empty($el['#title']) && $el_info['#type'] == 'checkboxes') {
+ if ($el_info['#type'] == 'radios'){
+ foreach($el_info['#options'] as $option){
+ $el_info[$option]['#title_display'] = 'invisible';
+ }
+ }
+
+ if (!empty($el['#title']) && ($el_info['#type'] == 'checkboxes' || $el_info['#type'] == 'radios')) {
Hi, I'm using this module in drupal 9.
Radios option to view element title and hide option label.
file: webform_checkboxes_table.info.yml -- line 4
file: WebformCheckboxesTable.php -- line 36