Disable Automator Pro usage reporting

There are two ways to disable Automator Pro usage reporting.

Method 1: Add the following line in your wp-config.php file:

define( 'AUTOMATOR_REPORTING', false );

Method 2: In your theme’s functions.php file add the following snippet:

/**
 * Snippet to disable Automator Pro reporting
 * @link https://docs.automatorplugin.com/reference/snippets/disable-automator-pro-usage-reporting/
 */
add_filter( 'automator_reporting', '__return_false' );