Search results for how to schedule emails
586 articles found
-
REST API V3 / Contact / Get
URL GET /wp-json/gh/v3/contacts Method This endpoint supports the GET method Request This endpoint provides multiple ways of searching and retrieving contact information. Here are the parameters you
-
Refactored Optin Status - 2020-02-12
In version 2.1.13 of Groundhogg, the contact optin status integer value is being refactored. Beyond 2.1.13, the optin_status will be a value between 1 and 8, rather than the old 0 and 7. This is
-
Troubleshooting: Why can't I activate my WaaS license on subsites?
If you have a WaaS license, you only need to activate it on the main site of the network. Then, you install the white label plugin which comes with your license and all of the subsites will be
-
List of Replacement Codes
When Groundhogg is installed the following replacement codes are available. Contact Info CRM Address WP User Contact Owner Activity Site Post Compliance Email Other Formatting Custom Fields As you
-
Replacement Code: {date}
The date replacement code is a handy one that allows you to reformat any date into a nice presentable string. The syntax is the date format followed by a string representation of the date compatible
-
Benchmark: Post Published
The Benchmark "Post Published" can trigger action(s) based on when a post or custom post type is published. Drag and drop the "Post Published" Benchmark over into the flow on the left. You will be
-
Benchmark: Page Visited
The Benchmark "Page Visited" can trigger action(s) when a contact visits pages matching specific rules. Drag and drop the "Page Visited" Benchmark over into the flow on the left. You will be
-
Benchmark: Plugin API Benchmark
The Benchmark "Plugin API Benchmark" provides a way to create your own custom benchmark. Drag and drop the "Plugin API Benchmark" Benchmark over into the flow on the left. You will be presented with
-
What cron-jobs must be created for Groundhogg?
You may be confused about Cron Jobs, which is understandable as they are a tricky subject sometimes. So in this article, I will tell you the ones which are essential, and some optional ones as well
-
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/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 );
-
Replacement Codes Without Arguments
This is the majority of codes, simply copy and paste and you’re off to the races.
-
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' );
-
Sales Pipeline: Reporting
To view reporting, click the 3 dots in the top right of any pipeline. Select Reporting
-
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/steps/benchmarks/form/extra_settings
This action hook is used to add custom settings at the end of the form. do_action( 'groundhogg/steps/benchmarks/form/extra_settings' );
-
GiveWP Integration: Reporting
GiveWP Reporting If you are looking to create reports for your donation forms created in GiveWP, follow the Custom Reports help document.
-
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/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/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' );
-
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' );
-
Refresh Opt-in Status Tags
Under Tools > Misc is a utility to Refresh Opt-in Status Tags. Click the [ Process ] button. What are opt-in status tags?
-
Groundhogg's Logs
*Click the tabs in the menu to view more information. These logs can be very helpful in reviewing and troubleshooting the activity in Groundhogg.
-
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' );
-
System Info & Debug
System Info & Debug tab contains the following tools: Download System Info Safe Mode Install Help Previous Update Reset Click to see a larger version
-
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/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/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/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/bulk_jobs/init
This action is used to add bulk jobs inside Groundhogg. do_action( 'groundhogg/bulk_jobs/init', $this ); You will get the object of the bulk job manager as an argument.
-
[gh_is_not_contact] Shortcode
You can use this shortcode to conditionally display content if the current visitor is not a contact. [gh_is_not_contact] Show this content if the visitor is not a contact.[/gh_is_not_contact]
-
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.
-
Install Help
Under Tools > Misc > Install help is a utility to reinstall Groundhogg or its installed extensions In the event there were installation issues. It does not affect your data.
-
[gh_replacements] Shortcode
You can use this shortcode to merge replacement codes into your content. [gh_replacements]Hi {first}[/gh_replacements] If you are feeling a bit lazy, you can use the shorthand version as well.
-
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
-
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
-
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/event/run/before
This action hook is used to run custom code after the event is processed by the event queue of Groundhogg. do_action( 'groundhogg/event_queue/process/after', $this ); Using this hook developer can
-
groundhogg/submission_handler/setup
This hook executed when the Groundhogg form is submitted. This hook is useful to perform operations on the data. do_action( 'groundhogg/submission_handler/setup', $this ); This hook provides the
-
Download System Info
Under Tools > Download System Info is a utility that provides system information for support. There are two options, that create the same info: Download System Info(.txt) View system Info Example:
-
GiveWP Integrations: Contact Metadata
Additional information about a Contact's donations can be found in the metadata box in the right column of each Contact. Total Customer Value Successful Payments Donation ID Donation Status Donation
-
groundhogg/admin/{slug}
This hook is used to add custom code on the top of the admin pages when pages are using tab page architecture. do_action( "groundhogg/admin/{$this->get_slug()}", $this ); This hook comes with an
-
AffiliateWP Integration: Replacement codes
The AffiliateWP extension has four replacement codes. Affiliate URL {affiliate_url} Returns the URL of the affiliate. Affiliate Rate {affiliate_rate} Returns the rate of affiliate. Affiliate ID
-
[gh_contact] Shortcode
This shortcode allows you to merge contact data into your content. This code works on a per-field basis, and you can also pass a default parameter in the event that the field doesn’t exist.
-
No dates are showing in my groundhogg contacts and events
Are you missing dates in your contacts and events tables? Here is a quick troubleshooting tip! Log into your WordPress site Click on the Settings link Make sure you have the default settings for
-
Custom Replacement Codes: Use replacement codes
Once you have successfully added a replacement code inside the database you will be able to view all the newly added replacement code in the replace code section. You can copy the code name from this
-
Sales Pipeline: Benchmarks
Benchmarks Sales Pipeline currently comes with one benchmark: Deal Moved Deal Moved When the 'Deal Moved' benchmark is used as a funnel step, it will trigger the funnel with these settings: Run when
-
groundhogg/admin/{slug}/display/{current_action}
This is used to add custom actions inside groundhogg admin area. This hook accepts the slug of the page and current action for which users are writing handlers.
-
groundhogg/event_queue/process/after
This action hook is used to run custom code once Groundhogg has completed the execution of an event using the event queue. do_action( 'groundhogg/event_queue/process/after', $this ); Using this hook