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.
2 parents 2f18761 + 107d15f commit 5ca88d8Copy full SHA for 5ca88d8
main/auth/inscription.php
@@ -465,7 +465,9 @@
465
$termExtraFields = new ExtraFieldValue('terms_and_condition');
466
$values = $termExtraFields->getAllValuesByItem($term_preview['id']);
467
foreach ($values as $value) {
468
- echo '<h3>'.$value['display_text'].'</h3><br />'.$value['value'].'<br />';
+ if (!empty($value['value'])) {
469
+ echo '<h3>'.get_lang($value['display_text']).'</h3><br />'.$value['value'].'<br />';
470
+ }
471
}
472
} else {
473
echo get_lang('ComingSoon');
0 commit comments