Search results for what is the funnel builder
602 articles found
-
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
-
GiveWP Integration: Introduction
GiveWP is one of the most popular donation plugins for WordPress, with over 100,000 active users. GiveWP offers a wide range of features, including Multiple payment gateways, Recurring donations,
-
Custom fields disappeared after updating to 2.6
If your custom fields disappeared after updating to 2.6 this is how you can fix it quickly. Go to Groundhogg > Tools > Install & Updates Select Groundhogg from the dropdown and click view updates
-
Why are Tracking (and Other) Links Not Working?
If you have just installed Groundhogg and have sent a few emails, you may have noticed that your tracking links may be leading to a page not found (also known as a 404 page, that says the page can't
-
Do development sites count against my license?
How It Works Our license activation system is linked to specific URLs. To facilitate activation on local development servers—those running on your laptop or desktop—we've exempted certain common URLs
-
Companies: Files
The ability to add files to a company is a sought-after feature. You can find the Files section under the Company information card. To Search Files, type in the "Search files..." field. As you type
-
Easy Digital Downloads Integration: Replacement codes
The Groundhogg Easy Digital Downloads integration contains six different replacement codes that you can use to send discount codes to contacts. Cart URL edd_cart_url The URL of your cart page.
-
seven Integration: Introduction
Groundhogg focuses on both SMS and email marketing. The Groundhogg Seven add-on is a plugin that lets you send messages using seven.io services. This documentation will help you set up your
-
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.
-
Broadcast Reporting
Upon selecting the "Broadcasts" tab, a comprehensive list of all existing Broadcasts will be displayed. From this interface, you may generate a detailed report for a specific broadcast by clicking
-
Easy Digital Downloads Integration: Introduction
Easy Digital Downloads (EDD) is a Top Tier eCommerce solution for companies exclusively selling digital products (Audio Files, PDFs, WordPress Plugins, Apps) and Groundhogg provides direct
-
How To Update Your Payment Method
If you signed up for Groundhogg with a credit card, you might need to update your payment method if your card expired, or was canceled. You can do this by logging into your account and going to your
-
White Label Branding: Introduction
Groundhogg’s White Label Branding feature allows you to customize the Groundhogg CRM to match your brand identity. This includes changing the Brand Name, Author Name, Author URI, Plugin URI, and
-
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.
-
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
-
AWS Integration: Using a custom Mail From domain
You can improve your email deliverability and mask the fact you use AWS SES by using a custom Mail From domain. Configuring this must be done through the AWS console, and can't be done through 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:
-
Email Blocks: Advanced
AdvanceTab Layout Provides: Padding(based on pixels and you can link/unlink the setting) Border Provides: Style(None, Solid, Dashed, Dotted, Double, Ridge, Groove, Inset, Outset - Default: None)
-
groundhogg/steps/init
This Groundhogg WordPress hook is used to add custom actions when the steps are loaded. You can use this action to add custom steps. do_action( 'groundhogg/steps/init', $this ); This action provides
-
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/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
-
Email opens are showing zero
Is there an option enabled that restricts access to the entire site for users who aren't logged in? If so, this setting may conflict with Groundhogg. Consider disabling it and restricting only
-
Enable Extension Beta Version Updates
Want to help the Groundhogg team test new premium extension developments? You can now enable beta version updates in the latest version of Groundhogg to receive access to experimental features before
-
Running CRON via WP CLI
Running CRON jobs via WP-CLI in WordPress is a powerful way to ensure that scheduled tasks are executed reliably and on time, without relying on visitors to trigger events. With WP-CLI, you can
-
SendGrid Integration: Disable tracking links on SendGrid
Groundhogg will provide open and click tracking statistics for you. It is known that SendGrid's internal tracking system interferes with Groundhogg's tracking links. You need to disable the SendGrid
-
Admin Tool Bar Widget
When you log in to your website you will find the Groundhogg Icon at the top right of your screen. This will give you access to the Groundhogg Admin Tool Bar Widget. Clicking on the icon displays the
-
SMTP: Connect to Zoho
If you plan to use Zoho to send out emails follow the steps below. To get started with this service, you need to go to Groundhogg's website and download the SMTP plugin, or get it as part of the
-
How to enable email logging
If you want to keep a record of all emails that are sent from your site you can enable the Email Logging feature. Enable email logging To enable it, go to Groundhogg > Settings > Email and scroll to
-
Booking Calendar: How to integrate with Google calendar
Groundhogg booking calendar allows you to integrate with Google if you wish to do so. How to integrate with Google Calendar: Log into your WordPress install. Click on Groundhogg > Calendars: Navigate
-
Really Simple Payments: Collecting PayPal payments
Note: Really Simple Payments has been discontinued to concentrate on developing smooth and improved integrations with top-tier payment solutions. We have decided to prioritize compatibility with
-
Booking Calendar: How to send contacts email notifications for appointments
Once you've set up your own notifications, you can set up and customize the notifications that your contacts will get after booking an appointment on your calendar. How to set up contact
-
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[
-
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
-
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/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 );
-
Easy Digital Downloads Integration: Examples
Examples Abandon cart recovery Refund win back Request a review Subscribe and send discount [EDD] Abandoned cart recovery (Included) Recover abandoned carts and get more sales! [EDD] Refund win back
-
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 =
-
Contacts: Profile Picture
A contact’s profile picture adds a visual touch to their record in Groundhogg, making it easier to recognize them in your contact list or reports. By default, Groundhogg uses the WordPress Gravatar
-
How To Change a User to an Administrator
If you need to change a user role to an administrator for our support team, please do the following. Find the needed user. Go the user record you wish to use as a support user for our team. WordPress
-
Meta Replacement Codes
Groundhogg can store additional information associated with contacts as metadata. To display metadata you can use replacement codes, for example: {profile_picture} or {note} You can find the
-
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
-
REST API / Authentication
The REST API Supports three different methods of authentication at this point in time. Groundhogg API Keys WordPress Application Passwords WordPress REST Nonce Groundhogg API Keys To use an API key
-
Booking Calendar: Connect your Zoom account
If you want to create Zoom meetings when someone schedules a new appointment from the Groundhogg Booking Calendar you're just a few simple steps away. Connect Groundhogg to your Zoom Account Open the
-
SMTP: Introduction
The SMTP extension plugin allows you to use any SMTP service to send emails through Groundhogg. *To monitor bounces and complaints, consider using one of Groundhogg's SMTP Integration extensions. To
-
HelpScout Integration: Setup contact record siderbar widget
You can display the Groundhogg contact record in HelpScout tickets in just a few steps using the Groundhogg HelpScout Integration. Instructions: Open Apps under the HelpScout Manage menu. Search for
-
[gh_does_not_have_tags] Shortcode
This shortcode can be used to display content if the contact does not have all the tags provided. [gh_does_not_have_tags tags="1,2,3"] Show this content if the visitor does not have the given
-
Email Blocks: Text
Text Apply styles to content in this block Make the text bold or italic Change the text color Add or remove a hyperlink Align the text to the left, right, center, or make it justified Use a bullet or
-
Saved Replies
You can compose and send an email directly from the Contact record. In the email editor, you also have the option to use a saved reply. Click the Saved Replies icon to open a window where you can
-
Note Templates
Note templates in Groundhogg streamline workflows by providing pre-defined, customizable structures for recurring notes, ensuring consistency, saving time, and reducing errors. Use Create Edit Delete