Title: hide empty fields in admin inbound message
Last modified: August 21, 2016

---

# hide empty fields in admin inbound message

 *  Resolved [fresh-x](https://wordpress.org/support/users/fresh-x/)
 * (@fresh-x)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/hide-empty-fields-in-admin-inbound-message/)
 * hey everyone,
 * is there any solution to hide empty fields in the overview of the admin inbound
   messages? any little hack or something, that the inbound message overview dont
   show up all the fields they are send with the form.
 * hoping anyone has an idea.
    best regards
 * [http://wordpress.org/plugins/flamingo/](http://wordpress.org/plugins/flamingo/)

Viewing 1 replies (of 1 total)

 *  Thread Starter [fresh-x](https://wordpress.org/support/users/fresh-x/)
 * (@fresh-x)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/hide-empty-fields-in-admin-inbound-message/#post-4553336)
 * 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.

 * ![](https://ps.w.org/flamingo/assets/icon-128x128.png?rev=1540977)
 * [Flamingo](https://wordpress.org/plugins/flamingo/)
 * [Support Threads](https://wordpress.org/support/plugin/flamingo/)
 * [Active Topics](https://wordpress.org/support/plugin/flamingo/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/flamingo/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/flamingo/reviews/)

## Tags

 * [empty](https://wordpress.org/support/topic-tag/empty/)
 * [form](https://wordpress.org/support/topic-tag/form/)
 * [inbound](https://wordpress.org/support/topic-tag/inbound/)
 * [message](https://wordpress.org/support/topic-tag/message/)

 * 1 reply
 * 1 participant
 * Last reply from: [fresh-x](https://wordpress.org/support/users/fresh-x/)
 * Last activity: [12 years, 4 months ago](https://wordpress.org/support/topic/hide-empty-fields-in-admin-inbound-message/#post-4553336)
 * Status: resolved