Would someone be so kind as to let me know the code to get rid of [BLANK] titles? Some of our records have titles and some don't. When they don't, it would be nice if the space on the page wasn't even there.
in ca_objects_default_html.php I have the code setup like this (not sure where it starts and stops but the relevant title is the perferred, not the nonpreferred which is always present):
`?>
</div><!-- end col -->
<div class='col-sm-6 col-md-6 col-lg-5'>
{{{<ifdef code="ca_objects.preferred_labels.name">
<H1>^ca_objects.preferred_labels.name</H1>
</ifdef>}}}
{{{<ifdef code="ca_objects.nonpreferred_labels">
<H2>^ca_objects.nonpreferred_labels</H2>
</ifdef>}}}
<HR>
`
This works well for us except for the [BLANK]. I have tried using ifdef / else / endif arguments but I am not trained in html php coding so I'm doing it wrong. Any advice? Thanks!