Viewing 1 replies (of 1 total)
  • Thread Starter fresh-x

    (@fresh-x)

    i have a soluition, not the best way – but it works.
    if someone want the same, just add this after tbody in
    flamingo/admin/includes/meta-boxes.php line 163:

    <script>
    jQuery(document).ready(function() {
    jQuery('table tr.alt').each(function(){
        var hide = true;
        jQuery('td.field-value',this).each(function(){
            if (jQuery.trim(jQuery(this).text()) != "")
                hide = false;
        });
        if(hide)
            jQuery(this).closest('tr').hide();
    });
    });
    </script>

Viewing 1 replies (of 1 total)
  • The topic ‘hide empty fields in admin inbound message’ is closed to new replies.