We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 280f931 commit 1866a0eCopy full SHA for 1866a0e
components/com_fields/layouts/field/render.php
@@ -18,6 +18,7 @@
18
$value = $field->value;
19
$showLabel = $field->params->get('showlabel');
20
$labelClass = $field->params->get('label_render_class');
21
+$renderClass = $field->params->get('render_class');
22
23
if ($value == '')
24
{
@@ -28,4 +29,4 @@
28
29
<?php if ($showLabel == 1) : ?>
30
<span class="field-label <?php echo $labelClass; ?>"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?>: </span>
31
<?php endif; ?>
-<span class="field-value"><?php echo $value; ?></span>
32
+<span class="field-value <?php echo $renderClass; ?>"><?php echo $value; ?></span>
0 commit comments