Remove "The Grid - Item Format" from edit page for posts?

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’);

Hello Hendrik,

Thanks for writing in!

Please disable it in the Post Editing screen > Options and then uncheck the “The Grid - Item Format”.

Hope this helps.

Thanks a lot, RueNel! I would have never found it myself.
Best,
Hendrik

Well the functionality is perfect, the only problem is that the settings have to be set for every user and for every post type seperately, And that the info is stored in a cookie, which makes that the procedure has to be repeated with every browser change.

There is no possibility to set it at plugin level - like it is done in Yoast?

Hello Hendrik,

Regretfully that is the only setting that we have at the moment. I will send your issue to the creators of the plugin and add it to the enhancements list that you can disable the “The Grid - Item Format” meta box settings.

Thank you for your understanding.

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