Skip to main content
Atarim
Updated over 2 months ago

Atarim is a service for collaborating with your clients. Two-way integration offers an insight into website status on Atarim Dashboard and an insight into Atarim tasks on the MainWP Dashboard.

Please note that this integration requires a paid Atarim plan (Starter, Expert, or Agency).

Connect Atarim to MainWP Dashboard

  1. Go to Atarim Dashboard > Settings > Integrations Settings page

  2. Enable MainWP Integration and copy the API Key

    Atarim & MainWP integration API Key
  3. Go to MainWP Dashboard > Extensions > Atarim > Settings page

  4. Paste the API Key

  5. Click the Save Settings button

    Connect MainWP to Atarim settings

After connecting with Atarim, MainWP will gain the following features:

  • Manage Sites table

    • A new column will be visible showing the number of Atarim tasks for child sites. Clicking the icon will reveal additional information about those tasks.

      Atarim Tasks modal element

  • Overview widgets

    • On the Overview and Individual Child site overview, a new widget will display information about Atarim tasks

      Atarim tasks widget

  • Pro Reports data
    Note
    : Pre Reports extension version 4.0.11 is required for Atarim data

    • Atarim Data can be included in the Report from the Report Data section

      Atarim pro reports settings
    • Atarim data can also be included by using two new tokens
      [atarim.all.tasks] – Displays all tasks for a site within the selected date range
      [atarim.billable.tasks] – Displays all billable tasks for a site within the selected date range

Connect MainWP to Atarim Dashboard

  1. Go to WP Admin > Settings > Permalinks Page

  2. Choose any settings except for Plain (this is a WordPress REST API limitation)

    How Can I Enable MainWP REST API? 1
  3. Go to MainWP Dashboard > Settings > REST API page

  4. Enable REST API and click Generate New API Credentials button

  5. Copy Consumer Key and Consumer Secret

    Enable REST API in MainWP
  6. Go to Atarim Dashboard > Settings > Integrations Settings page

  7. Find the MainWP Integration section

  8. Paste the Consumer Key and Consumer Secret, and the URL of your MainWP Dashboard

    Enable MainWP & Atarim integration in your Atarim account

After connecting with MainWP, Atarim will display the number of available updates, a number of security issues, and the uptime status of the sites.

Site info

Learn more about the Atarim extension!

How to disable Atarim on the 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

    Remove Atarim column from the Manage Sites table.
  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; }

Custom Dashboard, PHP code snippet

Did this answer your question?