Hello,
when using “The Grid”, the section “The Grid - Item Format” is added to the edit page for posts.
Is there a way to remove this section from the edit page? - we are not using this functionality and it will confuse our authors.
Thanks a lot! Best, Hendrik
*** SOLUTION FOUND AFTER THIS ISSUE WAS CLOSED ***
// remove the the-grid metabox from post pages
function hide_comments_div() {
global $pagenow;
if ($pagenow==‘post-new.php’ OR $pagenow==‘post.php’)
echo ‘#the_grid_item_formats{ display:none; }’;
}
add_action(‘admin_head’, ‘hide_comments_div’);

