Interface change of the Entries section

Hello
I am in preparation for the project
I want to make changes in the interface in the Entries section

I want to remove these fields like in the picture
I don’t want to remove it with CSS code
I want to remove it with Code Snippets
I’m waiting for help

Thank you

Unfortunately, CSS is the only way to remove most of the things you want to remove.

This snippet:

add_filter( 'gform_filter_links_entry_list', 'change_links', 10, 3 );
function change_links( $filter_links, $form, $include_counts ){
    return array();
}

will remove the “All | Unread | Spam” filter at the top of the page, but you’ll need to use CSS to hide everything else.

Thank you

Although it’s not quite a direct answer to your question, you may want to look at either Gravity View or the Status Page and block for it that Gravity Flow provides. They both provide you with no code approaches to display a subset of form(s) and field(s) for submitted entries.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.