How is Atarim working for you?

@dennis - It is hidden not removed completely so it is still there… You are the first one to put Privacy First but imposing a third-party inside your tool is not against those privacy rules?

I appreciate you pointing that out.

No, it is not. It was reviewed by a privacy attorney before being implemented. However, I will research an unset function that you can add to your Dashboard funtions.php file in your Dashboard, if that will work for you.

1 Like

Hi @dennis - as usual, I appreciate your quick reply and that you are listening. Thanks!
Yes, an unset function will be appreciated.

Hey @wpexpert

Here’s the snippet to unset the Atarim column completely from the table on the Manage Sites page:

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;
}
2 Likes

Hello @bojan, it worked!
Before:


After:

Thank you very much! Really appreciate the effort.

1 Like

Great, I’m glad it worked.

You are welcome, and we appreciate your passion for MainWP :slight_smile:

1 Like

I didn’t know that was its origin. I’ve had a developer use that while building a client site.

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