Search results for custom replacement code

257 articles found

  • Custom Replacement Codes: Introduction

    Groundhogg provides the functionality to use replacement codes. Instead of users being dependent on using built-in replacement code, Groundhogg users are able to create their own replacement codes by

  • Custom Replacement Codes: Add replacement code

    To add a custom replacement code go to the Replacements tab under the Groundhogg menu. Once you click on the tab, you will be able to view the page that allows you to add custom codes. You will also

  • Custom Replacement Codes: Edit replacement code

    Groundhogg provides the functionality to edit and delete custom codes generated by the users. To edit an existing replacement code all you need to do is click on the edit button under the replacement

  • 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

  • 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.

  • Replacement Code Defaults

    To provide a default value for a replacement code that does not return anything, use the following syntax. {replacement::deafult} For example, to provide a default for the first name of a contact 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

  • Replacement Code: {posts}

    The {posts} replacement code can be used to add posts to your emails! With several different formatting options, you can find one that matches every use case. Querying posts The posts replacement

  • Replacement Code: {files}

    The Files replacement code can be used to add a list of files that are added to the Contacts record {files} Example output:

  • Replacement Code: {auto_login}

    The Auto Login replacement code can be used to add a link that will automatically log in to the contact if they have a user account. {auto_login_link} To change the login link add dot URL

  • 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

  • Make Replacement Code link look pretty

    If you don’t want the full replacement code link to appear in your email you can include it as a link anywhere in your email. Here’s how to do this: When you have your email open (and are editing

  • WooCommerce: Replacement codes

    The Groundhogg-Woocommerce add-on contains six different replacement codes that you can use to send discount codes to contacts. Cart URL wc_cart_url The URL of your cart page. Restore Cart URL

  • Companies: Replacement codes

    The Companies Extension has six replacement codes. You can see a full list of replacement codes by clicking the "Insert Replacements" button that can be found in the e-mail editor and funnel editor.

  • Intro to Replacement Codes

    You can personalize much of the customer experience by using replacement codes. Where Do I Use Replacements? Replacement codes merge in user data to whichever supported content you want, such as

  • Adding custom code to Groundhogg

    The best place to add custom code in Groundhogg is in a custom plugin, that way you can deactivate it if you make a mistake or your code stops working. Download our example plugin from Github and

  • GiveWP Integration: Replacement Codes

    GiveWP Extension has six replacement codes. You can see a full list of replacement codes by clicking the "Insert Replacements" button that can be found in the e-mail editor and funnel editor.

  • Replacement Codes Without Arguments

    This is the majority of codes, simply copy and paste and you’re off to the races.

  • Replacement Codes With Arguments

    Some codes require an argument to function. For example the {date} , {meta} and {GET} codes. You can specify an argument using a period . For example: {date.Y-m-d|today} The date uses PHP Date

  • 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

  • LifterLMS Integration: Replacement codes

    LifterLMS Extension has two replacement codes. You can see a full list of replacement codes by clicking the "Insert Replacements" button that can be found in the e-mail editor and funnel editor.

  • Booking Calendar: Replacement Codes

    The Booking Calendar comes with these replacement codes. Time to appointment {time_to_appointment} The time difference to the start of the appointment Contact Appointment Start Time

  • List of Replacement Codes

    When Groundhogg is installed the following replacement codes are available. Contact Info CRM Address WP User Contact Owner Site Post Compliance Email Other As you add extensions additional

  • 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.

  • Custom Fields in Groundhogg 2.6

    With Groundhogg 2.6 and above having changed up a bit on how things are arranged, we thought it would be helpful to make this guide. Table of contents: Adding a new custom field tab Deleting a custom

  • Custom Fields in Forms(Legacy)

    You can collect custom information about a contact using custom fields. As an example, add an "input" field in the form builder. Clicking the button will bring up the field UI where you can give your

  • Companies: Custom Fields

    When in Companies the way to add a new tab to store your custom fields is by going to the tabs list below the Company information. On the rightmost is a plus icon, clicking to add a new tab. A model

  • Advanced Features: How to add custom HTML email templates from third party platforms

    If you are using a third-party platform to design your emails, you can use the Import HTML Template feature to send the email with Groundhogg. When adding a new email, click the Import HTML Template

  • 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

  • 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

  • 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[

  • Introduction to Reporting

    The Groundhogg reporting dashboard provides incredible insight into how your list is interacting with your information and consuming your content. You can get to the dashboard by clicking on

  • Text Messaging (SMS): Create a custom SMS integration

    Want to add your own custom SMS integration? You can do that. Copy the code below and add it to a custom plugin file on your site. Once you add the code your custom SMS service will show in the SMS

  • Introduction to Groundhogg Custom Extension

    Funnel elements are what makes magic happen in Groundhogg. We have designed a methodology for implementing custom actions & benchmarks which you can find below. To see example implementations of some

  • Create your own custom benchmark using the Plugin API

    You could create your own custom benchmark, but as we routinely update the registration flow, and backwards compatibility is not always guaranteed. However, we do provide a future-proof method to

  • How to auto-fill web forms.

    If you would like a Groundhogg web form to be pre-filled with a contact's information you can do that! All you have to do is use a replacement code for the field value. In the form editor, click the

  • Adding custom tabs and fields to the contact screen

    Custom tabs and fields can be added to the contact screen using the plugins API and the contact meta DB. You can see and read how on our Github or using the same code below. <?php class My_Custom_Tab

  • Creating custom reports

    Groundhogg offers the ability for you to create custom reports. To see the custom reports go to Groundhogg -> Reporting -> Custom. To add a report click on the [ Create New Report ]. There will be a

  • 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

  • Custom Fields: Filters

    Groundhogg generates filters based on the custom fields you have created: Depending on the type of field, different filter choices will be available. *You can use these filters together in

  • Replacements Keyboard Shortcut

    Replacement codes are very useful and merge in user data to whichever supported content you want, such as emails, notifications, text messages and more. There is a keyboard shortcut to bring up the

  • White Label Branding: Shipping custom funnel and email templates

    With the White Label Branding addon, you can ship custom funnel and email templates to your clients' sites! Prerequisites Before you can start shipping your custom templates, you'll need... An Agency

  • Custom Roles and Capabilities

    If you want to grant Groundhogg privileges to other user roles, or specific users you can do that using a free plugin call User Role Editor: https://wordpress.org/plugins/user-role-editor/

  • Custom fields in the list view

    Custom fields you create will show in the contact list view by default. You can hide/show custom fields by clicking on Screen Options and selecting which columns you want to see in the table. Your

  • [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.

  • 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

  • Email Blocks: Posts

    Block Settings Layout Card Style Heading Excerpt Thumbnail Query Layout Layout (Cards, Numbered List, Unordered List, H1, H2, H3, H4, H5) Featured (On/Off) Displays a large single-column post above

  • Booking Calendar: Use a custom form for bookings

    Groundhogg Booking Calendar provides functionality to create a custom form that the user needs to fill while booking an appointment. Booking Calendar uses the Groundhogg form to achieve this task.

  • 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

  • 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