Table of Contents

How to disable Atarim on Manage Sites table

How to hide the Atarim column

  1. Go to MainWP Dashboard > Sites > Manage Sites page
  2. Click the Cog icon (Page Settings) in the top right
  3. De-select Atarim in the Show Columns section
    How to disable Atarim on Manage Sites table 1
  4. Click the Save Settings button

 

 

How to unset the Atarim column

Insert the following snippet using our Custom Dashboard extension, or by inserting it in the functions.php file of the active theme of your MainWP Dashboard:

add_filter( 'mainwp_sitestable_getcolumns', 'myhook2_mainwp_sitestable_getcolumns', 20, 2 );
function myhook2_mainwp_sitestable_getcolumns( $columns ) {
	if(is_array($columns) && isset($columns['atarim_tasks'])){
		unset( $columns['atarim_tasks'] );
	}
	return $columns;
}

How to disable Atarim on Manage Sites table 2

Still Have a Questions?
Search for additional solutions in the MainWP Community or start your own discussion