Search results for replacement codes
179 articles found
-
Action: Plugin API Action
If you would like to create your own custom Action use the Plugin API Action. To add the Plugin API Action to the funnel flow, either click the "+" at the branch and click the Plugin API Action step
-
How to create a custom countdown timer theme
Steps to Create the Plugin: 1. Create the Plugin Folder: Go to your WordPress installation directory. Navigate to /wp-content/plugins/. Create a new folder for your plugin, for example:
-
Email Blocks: Query Loop
Block Settings Layout Query Reference Layout Columns (Default: 2) Select the number of columns Gap (Default: 10px) Adjust the gap between columns Thumbnail Size(Thumbnail, Medium, Large, and any
-
[preferenes-file] Shortcode
When you install Groundhogg it creates a page called Preference Center which contains a short code [preferences-center] [preferences-center]
-
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/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/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/updater/{updater_name}/finished
This action hook is used to run a block of code when Groundhogg is updated to a new version. do_action( "groundhogg/updater/{$this->get_updater_name()}/finished" );
-
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/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/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/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/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/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/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/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/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.
-
WooCommerce: Adding data from the Checkout Field Editor
If you utilize WooCommerce along with the " Checkout field editor" to incorporate additional fields into your checkout form and aim to gather data to append to your Contact, here's what you need to
-
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/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/form/shortcode/after
This function is used to add custom code after the form shortcode is processed by the Groundhogg form builder. do_action( 'groundhogg/form/shortcode/after', $this ); This hook provides the object of
-
groundhogg/form/shortcode/before
This function is used to add custom code before the form shortcode is processed by the Groundhogg form builder. do_action( 'groundhogg/form/shortcode/before', $this ); This hook provides the object
-
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
-
groundhogg/email_notification/run/before
This hook is used to add custom code before an email notification sends to a customer. do_action( 'groundhogg/email_notification/run/before', $this, $contact, $event ); This hook provides three
-
groundhogg/event_queue/process/before
This action hook is used to run custom code before the event is processed by the event queue of Groundhogg. do_action( 'groundhogg/event_queue/process/before', $event_ids ); Using this hook developer
-
groundhogg/email_notification/run/after
This hook is used to add custom code after email notification sends to a customer. do_action( 'groundhogg/email_notification/run/after', $this, $contact, $event ); This hook provides three objects to
-
[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.
-
groundhogg/steps/{type}/settings/before
This Groundhogg hook used to add a custom setting before specific step settings inside the funnel builder. Here, type can be a benchmark or action. do_action(
-
groundhogg/steps/{type}/settings/after
This Groundhogg hook used to add a custom setting after specific step settings inside the funnel builder. Here, type can be a benchmark or action. do_action( "groundhogg/steps/{type}/settings/after",
-
groundhogg/admin/emails/add/{tab}
This hook is used to add a new tab inside the add page of the email builder. This hook provides the functionality to manage the response. do_action( "groundhogg/admin/emails/add/{tab}" ); While using
-
groundhogg/form/fields/init
This action hook is used to add form controls via hook. This hook is executed when all the controls of the form loaded. do_action( 'groundhogg/form/fields/init', $this ); This hook returns the object
-
groundhogg/steps/settings/before
This Groundhogg hook used to add a custom setting before each and every step inside the funnel builder. Here, steps can be a benchmark or action. do_action( "groundhogg/steps/settings/before", $this
-
groundhogg/steps/settings/after
This Groundhogg hook used to add a custom setting after each and every step inside the funnel builder. Here, steps can be a benchmark or action. do_action( "groundhogg/steps/settings/after", $this );
-
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
-
groundhogg/steps/{type}/reporting/before
This Groundhogg hook used to add a custom data in the reporting view of the step before the inbuilt reporting view. Here, type can be a benchmark or action. do_action(
-
groundhogg/steps/{type}/reporting/after
This Groundhogg hook used to add a custom data in the reporting view of the step after the inbuilt reporting view. Here, type can be a benchmark or action. do_action(
-
Email Log
By default, Email logging is not enabled. How to enable logging. You will be presented with a notification. You can click the [ Settings ] button or the "email settings" link to be taken to the
-
Benchmark: Custom Activity
So it's really for developers and third-party usage using our track_activity function A new version of WPFusion will also make it useful, but it's not useful on its own without code at the moment.
-
Remove "powered by Groundhogg"
To remove add the code provided below to your theme's functions.php file or a snippets plugin. //Remove "powered by groundhogg" and link add_filter( 'groundhogg/proof/show_proof/credit_link_atts',
-
Add To Calendar
This simple utility plugin will generate Google Calendar event links. You can download this add-on from the Groundhogg website or as part of a plan and install it on your website. After
-
Example: Send Broadcast
Sample code for sending a broadcast via Groundhogg's API. Ensure you have an email set up and its corresponding ID before using this code. <?php // Define your Groundhogg API credentials $api_url =
-
Disable tracking links in emails
There could be multiple reasons why you don’t want tracking links to be in your emails, from privacy, to using another product for tracking purposes, to using an email provider that also does
-
REST API V3 / Contact / Delete
URL DELETE /wp-json/gh/v3/contacts Method This endpoint supports the DELETE method. Request To delete a contact record you must pass these arguments. PARAM TYPE REQUIRED EXAMPLE id_or_email string |
-
Register an additional email service
Register an additional SendGrid email service that uses a custom API key when the contact is unconfirmed and the email type is marketing. Add this code to your theme's functions.php file or use a
-
Zapier Integration: How to integrate Groundhogg with Thriveleads
Integrating with Thrive Leads can be accomplished in two ways. 1. You can use the Zapier addon (which is included in the Pro plan or above) from Groundhogg and set up a Zap. Documentation for the