I have custom fields and forms and some fields don't appear on certain forms. However, when an end user goes to their ticket, they see all the fields and not just the ones associated with that form. How can I get the Help Center my activities screen to only populate the fields with data? I have this JS logic but have been unable to get it to work. Worse yet, if I modify the theme at all, the "Add reply" button doesn't show up.
$('.request-details dd').each(function() {
var fieldValue = $(this);
if (fieldValue.text() === '-"')
{
fieldValue.prev().remove();
fieldValue.remove();
}
});
Ideas?
