Disable 'The Grid - Item Format'

Is it possible to hide ‘The Grid - Item Format’ settings for all users when editing a post? I know i can click and hide it for myself but i don’t want other users to see these options either.

Best
Johan

Hi Johan,

Thanks for reaching out.

In order to help you with your concern, can you give us the screenshots of the “Item Format” you are referring to? so that we can better help you with your issue.

Hope that helps.

Thank you.

Please see the attached images :slight_smile:

Hey Johan,

Thank you for providing the screenshots. You can disable this in the Post Editing screen > Preferences and then under Additional panels uncheck the “The Grid - Item Format”.

Hope this helps!

Hi Nabeel, this would only disable it for myself, right? I would like to disable it for all future users too :slight_smile:

Hey @Johanschack,

In that case you can try adding the following code in your child theme’s functions.php file:

// remove the the-grid metabox from post pages
function remove_grid_metabox() {
  echo '<style>
	#the_grid_item_formats {
		display: none;
	}
  </style>';
}
add_action('admin_head', 'remove_grid_metabox');

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Hope this helps!

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