Skip to content
valentinjurca edited this page May 12, 2022 · 6 revisions

Welcome to the thrive-automator-docs Wiki!

The purpose of these docs is to help you understand the ways in which you can create your own triggers, filters and actions so that you can construct custom automations using the plugin.

By installing the Thrive Automator Integrations Examples plugin, as advised here, you will get some more examples of custom triggers/actions that can be created using Thrive Automator, such as:

  • WooCommerce Product Stock Updates - Start Trigger
  • Webhook Request - Action
  • Change Thrive Ultimatum campaign status into running - Action

We have provided documentation that should help you in case you are looking to create:

Please check those out, as we've included general information, requirements, and methods of using the listed functions to create the automation items.

Besides that, you'll also be able to find information about:

Please note that all Thrive Automator integrations must be registered during the thrive_automator_init hook.

In our main plugin file, we'll hook into the thrive_automator_init hook and register our action and our action field:

add_action( 'thrive_automator_init', static function () {
	thrive_automator_register_action_field( new \AutomatorExamples\Actions\Fields\Url() );
	thrive_automator_register_action( new \AutomatorExamples\Actions\Webhook() );
} );