Search results for zap action

161 articles found

  • Twilio Integration: Composing & sending WhatsApp messages

    Before continuing, please review Getting started with WhatsApp. Once you have configured Groundhogg to send and receive messages with WhatsApp, you can begin to message your customers and collect

  • Introduction to Custom Meta

    Custom meta (a.k.a custom fields) in Groundhogg allows you to store an unlimited amount of information about a contact. Using them effectively can allow you to do some really cool things and send

  • Email Threading

    Email threading is a feature in email clients and services that organizes email messages into a single, coherent conversation. It aims to streamline the viewing and management of email chains by

  • What To Do If Events Are Stuck Waiting

    If events are stuck in the Waiting Status it can be caused by a couple of things. Your Cron Job is not active. The most likely reason is your cron job is no longer active, to solve this follow the

  • Contact Activity

    You can keep track of the contact's activities. What are activities? The "Activity" tab provides a log of events that occur for this contact. Events like: Logged In / Logged Out Page Visits Funnels

  • What cookies does Groundhogg create?

    Groundhogg uses cookies to provide essential functionality to the end-user and ensure complete and correct customer journeys. Below is a list of cookies that Groundhogg creates to create better and

  • Email Editor

    To use the Advanced Email Editor, visit Groundhogg > Emails From this screen, you can select from a list of existing emails, add new, broadcast, or search based on the email name. Sorting is

  • Bricks Builder Forms Integration

    Bricks is a premium WordPress theme that lets you visually build performant WordPress sites and uses what are called elements. Elements are very similar to blocks. The Bricks’ “Form” element allows

  • How Do I Export My List?

    We understand that you may not want to use Groundhogg anymore, or want to have a backup of your list. We have made multiple ways to export the lists that you want. From the Contacts Screen To export

  • Advanced Features: How to use Superlinks

    Superlinks are a helpful tool for filling in automation gaps based on subscriber interaction with your content. Essentially, they allow you to add tags, remove tags or update meta fields to a contact

  • Merging Contacts

    If you have multiple contact records for the same entity or person, you may want to merge them together so that it is less confusing for your team and your marketing. How to merge two contacts? If

  • REST API V4 / Contacts

    The contacts API allows you to fetch, add, edit, and delete contacts. Contact Properties Attribute Type Description ID integer The system ID of the contact data object The core properties of the

  • Really Simple Payments: Payments and refunds

    Groundhogg provides the functionality to administer your payments and subscriptions from your admin area. These tabs provide advanced search functionalities which makes finding a specific transaction

  • Adding custom reports

    Groundhogg provides functionality to add reports in the Groundhogg dashboard. Using the Groundhogg dashboard you can add tables, line chart, donut chart in the dashboard. To add your custom chart you

  • How to Remain Compliant with GDPR

    In an effort to protect the privacy of its citizens at home and worldwide, any business that collects the contact information of European citizens, regardless of geographical location MUST comply

  • Introduction to Benchmarks

    Benchmarks are inside of a funnel and are staple points that a contact can jump to if certain things happen. We are going to explain some of the actions available and you may have different ones

  • Custom Step Titles

    Do you feel the necessity to alter the titles* of the steps? *The Step titles that Groundhogg generates are pretty impressive You can enable the ability to customize the titles for Benchmarks and

  • How To Bulk Edit Contacts

    To bulk edit your contacts, go to the contacts screen and make a search for the contacts you want to edit. Next to the bulk actions screen, there is a More Actions dropdown which you can click to

  • groundhogg/event/post_setup

    Used to do any actions after the event setup is completed. do_action( 'groundhogg/event/post_setup', $this ); it returns the object of an event as an argument. Ideal for storing custom information

  • Tutor LMS Integration: Introduction

    Tutor LMS is a feature-rich, easy to use learning platform. With our Tutor LMS integration, you will be able to make it even MORE powerful. The Goundhogg integrations include actions for courses: Add

  • GiveWP Integration: Benchmarks

    GiveWP has one benchmark. This benchmark is used to automate funnels and send automated emails based on the contact's actions. Before using this benchmark you will want to create a donation form in

  • Adding custom contact table columns

    This code is used to add the custom column inside Groundhogg's contact table. <?php add_action( 'groundhogg_contact_columns', 'add_my_custom_column' ); function add_my_custom_column( $cols ){ $cols[

  • Breakdance Forms Integration

    Breakdance is a premium WordPress theme, and visual builder with 130+ built-in elements and deep WooCommerce integration. The Breakdance “Form Builder” block allows the building and placement of

  • Trigger when Tags are changed, any tags, not one specific tag

    Scenario: Create a benchmark that triggers a funnel when tags are changed, any tags, not one specific tag. Using the Plugin API Benchmark. You will need to add this snippet of code to either your

  • groundhogg/scripts/after_register_frontend_styles

    This hook is used to add custom front end stylesheet into Groundhogg. do_action('groundhogg/scripts/after_register_frontend_styles');

  • groundhogg/import/form/after

    This hook is used to add code after the import section on the tools page. do_action('groundhogg/import/form/after' );

  • groundhogg/import/form/before

    This hook is used to add code before the import section on the tools page. do_action('groundhogg/import/form/after' );

  • groundhogg/admin/contacts/add/form/after

    This hook is used to add extra code after the add contact from. do_action( 'groundhogg/admin/contacts/add/form/after' );

  • groundhogg/event/failed

    Used to run a block of code when groundhogg event failed. do_action('groundhogg/event/failed', $this); You will receive the object of an event class as an argument.

  • groundhogg/replacements/init

    Used to add custom replacement code inside Groundhogg. do_action( 'groundhogg/replacements/init', $this ); This hook provides the object of the replacement class as an argument to work with.

  • groundhogg/event/cancelled

    Used to run a block of code when the event is cancelled. do_action('groundhogg/event/cancelled', $this); You will receive the object of an event class as an argument.

  • groundhogg/scripts/after_register_frontend_scripts

    This hook is useful to add front end script in Groundhogg. do_action('groundhogg/scripts/after_register_frontend_scripts', $this->is_script_debug_enabled(), $dot_min );

  • groundhogg/admin/contacts/add/form/name

    This hook is used to add custom code after the name section of contact on the add contact page. do_action( 'groundhogg/admin/contacts/add/form/name' );

  • groundhogg/event/pause

    Used to run a block of code when event status changed to pause. do_action('groundhogg/event/pause', $this); You will receive the object of an event class as an argument.

  • groundhogg/event/run/after

    Used to run a block of code after any event completed. do_action('groundhogg/event/run/after', $this); You will receive the object of an event class as an argument.

  • groundhogg/admin/contacts/add/form/tags

    This hook is used to add custom code after the segmentation section of the contact on the add contact page. do_action( 'groundhogg/admin/contacts/add/form/tags' );

  • groundhogg/admin/tags/add/form

    This hook is used to add custom code in the form of adding tags before the submit button on the tag page. do_action( 'groundhogg/admin/tags/add/form' );

  • groundhogg/admin/contacts/add/form/notes

    This hook is used to add custom code in the Notes section of the contact on the add contact page. do_action( 'groundhogg/admin/contacts/add/form/notes' );

  • groundhogg/event/complete

    Used to run a block of code when the event status changed to complete. do_action('groundhogg/event/complete', $this); You will receive the object of an event class as an argument.

  • groundhogg/event_queue/process/after

    Used to run a block of code before any event completed. do_action('groundhogg/event/run/before', $this); You will receive the object of an event class as an argument.

  • groundhogg/event/skipped

    Used to run a block of code when the event marked as a skipped event. do_action('groundhogg/event/skipped', $this); You will receive the object of an event class as an argument.

  • groundhogg/admin/contacts/add/form/contact_info

    This hook is used to add custom code after the contact info section of contact on the add contact page. do_action( 'groundhogg/admin/contacts/add/form/contact_info' );

  • Easy Digital Downloads Integration: Tags

    Tag Management Groundhogg's Easy Digital Downloads Integration can: Add tags Remove tags Reverse tags on refund These actions are implemented individually for each download. They take effect upon the

  • groundhogg/admin/tags/add

    This hook is executed when the admin adds new tag using the tag page of admin panel. do_action( 'groundhogg/admin/tags/add', $id ); This hook provides tag id as an argument.

  • groundhogg/admin/tags/edit/form

    This hook is used to add custom code in the tag's edit page. do_action( 'groundhogg/admin/tags/edit/form', $id ); This hook provides tag ID as an argument to work with.

  • groundhogg/admin/tags/edit

    This hook is executed when the admin updates the tag from the edit screen of the tag page. do_action( 'groundhogg/admin/tags/edit', $id ); This hook provides a tag id as an argument.

  • groundhogg/contact/preferences/updated

    This hook executes when the contact's preference is changed. do_action( 'groundhogg/contact/preferences/updated', $this->ID, $preference, $old_preference ); This hook comes with three arguments: ID

  • groundhogg/event/in_progress

    Used to run a block of code when the event before event goes to in progress mode. do_action('groundhogg/event/in_progress', $this); You will receive the object of an event class as an argument.

  • groundhogg/event/queued

    Used to run a block of code when the event is put in an execution queue by the Groundhogg plugin. do_action('groundhogg/event/queued', $this); You will receive the object of an event class as an

  • groundhogg/contact/preferences/unsubscribed

    This hook executes when the contact changes its preference to unsubscribed. do_action( 'groundhogg/contact/preferences/unsubscribed', $this->ID, $preference, $old_preference ); This hook comes with