WooCommerce All Products for Subscriptions

WooCommerce All Products for Subscriptions

#Overview
When using the All Products for WooCommerce Subscriptions extension, WP Fusion adds an additional section to the settings panel while editing your products.

Any tags specified under Apply tags when subscribed will be applied in addition to the main purchase tags only when the product is purchased as a subscription.
As well, the normal WP Fusion tagging options for subscription statuses will be visible beneath this. Any settings configured there will also only apply if the product is purchased as a subscription.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

ActiveCampaign Overview

ActiveCampaign Overview

#Overview
WP Fusion』s Ecommerce Addon (available for Plus and Professional license holders) allows you to track customer purchases and lifetime revenue in ActiveCampaign for sales made in:

WooCommerce
Easy Digital Downloads
Event Espresso
LifterLMS
MemberPress
Give
and Restrict Content Pro

After installing the plugin, go to the WP Fusion settings page and click on the Enhanced Ecommerce tab to see the configurable options.
#Deep Data
Note: Deep Data integration with ActiveCampaign requires a Plus level plan or higher.
Warning: If you』re connecting WooCommerce to ActiveCampaign via WP Fusion』s Deep Data integration, make sure you』ve deactivated and disconnected ActiveCampaign』s native WooCommerce integration, as having two active connections will result in duplicate order data.
WP Fusion includes support for ActiveCampaign』s Deep Data API. On the Enhanced Ecommerce tab in the WP Fusion settings, check the box next to Deep Data and save the settings to initialize the connection.

In your ActiveCampaign account, navigate to the settings and click on the Integrations tab. You should see WP Fusion listed.

Any sales made in any of the supported plugins will be added to the corresponding contact record using the new deep data display. ActiveCampaign will automatically track lifetime revenue, total orders, and total products purchased for the contact.
Note: When WP Fusion is connected to ActiveCampaign via Deep Data, ActiveCampaign will apply a tag 「WP Fusion-customer」 to anyone who makes a purchase. This is an ActiveCampaign feature and can』t be turned off, though the tag can be removed using an automation.
#How it looks
Deep Data from WooCommerce showing on the contact record in ActiveCampaign
The order details are shown inside ActiveCampaign
Deep Data order showing selected product attributes, with the Sync Attributes setting on.
#Refunds
ActiveCampaign doesn』t have a specific order state for 「refunded」. However, when Deep Data is enabled, if an order is refunded or cancelled in WooCommerce the order total in ActiveCampaign will be updated to $0.00 so that lifetime values are still calculated accurately.
#Revenue Tracking
Note: If you』re using our Deep Data integration with ActiveCampaign, revenue tracking is handled automatically by ActiveCampaign. You only need to set up revenue tracking if you』ve elected not to use the Deep Data API.
To set up revenue tracking, first create a new contact custom field in ActiveCampaign. This field will be used to track the total amount spent by a customer in your store. If the field doesn』t appear in the Total Revenue Field dropdown, begin typing the name and click 「Resynchronize」 at the prompt to load the new custom field from ActiveCampaign.
Whenever a customer checks out on your store, this field will be incremented with the total value of their purchase.
ac-setup
 
#Deals Tracking
For more advanced ecommerce automation, ActiveCampaign』s Deals system is one of the best systems available. Using the Enhanced Ecommerce Addon, WP Fusion can create deals in ActiveCampaign with the order value and other details, and associate those deals with the originating customer.

Note: The Deal settings will be hidden if your ActiveCampaign account doesn』t support Deals, or if you haven』t created any Pipelines or Stages yet. If you』ve just created a new Pipeline, click Resynchronize on the Setup tab to reload the available Pipelines and Stages. The settings should now be visible.
#How to Enable Deals
To enable deals tracking, first check the box next to Deals in the Ecommerce Tracking settings. Next select a pipeline and stage where new deals will be inserted (deals can later be moved using automations).

If you』ve just created a pipeline or stage and it doesn』t appear in the list, go to the Setup tab and the Refresh Available Tags & Fields button to reset the list of available pipelines and stages.
Once enabled, deals will be added to ActiveCampaign like in the screenshot below.

Each deal will have a title indicating the plugin that created the deal and order number. The deal value will be set to the total value of the purchase, and the deal will be assigned to the contact record who made the order.
A note will be attached to the deal containing the products purchased and a link to view the associated order in your WordPress admin.
Using ActiveCampaign』s Automations you can then move deals between stages, create followup tasks, set deal statuses, and much more.
#Video – Enhanced Ecommerce – ActiveCampaign

#Developers
The Enhanced Ecommerce addon has three filters specific to ActiveCampaign, wpf_ecommerce_activecampaign_add_deal, wpf_ecommerce_activecampaign_add_deal_note and wpf_ecommerce_activecampaign_add_deep_data depending on whether you』re syncing Deals or Deep Data.
#Deal Filter
For example to modify the deal title:
function my_custom_deal_properties( $deal, $order_id ) {

/* $deal is structured like (see https://developers.activecampaign.com/reference#create-a-deal-new)

$deal = array(
'title' => 'WooCommerce Order #XXX',
'value' => 100,
'currency' => 'usd',
'pipeline' => '1',
'stage' => '1',
'contactid' => '123',
'owner' => '1',
); */

$deal['title'] = 'My Order #' . $order_id; // Change the title

return $deal;

}

add_filter( 'wpf_ecommerce_activecampaign_add_deal', 'my_custom_deal_properties', 10, 2 );
#Deal Note Filter
For example to modify the note description:
function my_custom_note( $note, $order_id ) {

$note = 'My custom note for order #' . $order_id;

return $note;

}

add_filter( 'wpf_ecommerce_activecampaign_add_deal_note', 'my_custom_note', 10, 2 );
#Deep Data Filter
For example to record the use of a WooCommerce coupon:
function my_custom_deep_data_properties( $data, $order_id ) {

/* $data is structured like below (for more info https://developers.activecampaign.com/reference#create-order)

$data = array(
'ecomOrder' => array(
'externalid' => '123',
'source' => '1',
'email' => '[email protected]',
'orderNumber' => '123',
'orderProducts' => array(
'externalid' => 'PROD12345',
'name' => 'Pogo Stick',
'price' => 4900,
'quantity' => 1,
'category' => 'Toys',
'sku' => 'POGO-12',
'description' => 'lorem ipsum...',
'imageUrl' => 'https://example.com/product.jpg',
'productUrl' => 'https://store.example.com/product12345'
),
'orderUrl' => 'https://store.example.com/wp-admin/edit.php?post_id=123',
'orderDate' => '2016-09-13T17:41:39-04:00',
'totalPrice' => 4900,
'currency' => 'USD',
'connectionid' => '1',
'customerid' => '123',
),
); */

$order = wc_get_order( $order_id );

$coupons = $order->get_coupon_codes(); // See if a coupon was used

if ( ! empty( $coupons ) ) {

// Add it to the deep data

$data['orderDiscounts'] = array(
array(
'name' => $coupons[0],
'type' => 'order',
'discountAmount' => $order->get_total_discount(),
),
);
}

return $data;

}

add_filter( 'wpf_ecommerce_activecampaign_add_deep_data', 'my_custom_deep_data_properties', 10, 2 );

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

ActiveCampaign Event Tracking

ActiveCampaign Event Tracking

#Overview
Using WP Fusion you can track events from supported plugins in ActiveCampaign.
For an overview of event tracking in ActiveCampaign in general, see this link.

The Event Tracking addon currently supports the following plugins:

Easy Digital Downloads
EDD Software Licensing
Gravity Forms
LearnDash
LifterLMS
WooCommerce

Coming soon:

BuddyBossGamipress
Presto Player

#Setup
To use event tracking in ActiveCampaign, it must first be enabled in your account.
Enable event tracking in ActiveCampaignEvent tracking in ActiveCampaign must be enabled before it can be used.
Head to Settings » Tracking, and click the toggle next to Event Tracking to enable it.
#How it works
When an event is tracked in a supported plugin, it will be recorded to the WP Fusion activity logs, and sent to the corresponding person』s contact record in ActiveCampaign.
Tracked events will then show up in that contact』s Activity timeline, on the right side of their contact record.

Heads up: ActiveCampaign only accepts alphanumeric characters, spaces, dashes, and underscores in event names. Any other special characters will be removed automatically by WP Fusion.
As an example:

Purchase – Membership = Good ✅
Purchase: Membership (Gold) = Will be changed to Purchase Membership Gold

#How it looks
Events are displayed on the Recent Activities timeline on the right side of the contact record.
ActiveCampaign event trackingEvents tracked by WP Fusion show up in the Activity timeline to the right of the contact record. In this case, we see two Gravity Form submissions.
Event Tracking Course ProgressIn this example we can see course progress from a LearnDash course being tracked via events.
Events can also trigger automations. In this case we have an automation that』s triggered when a quiz is passed with a grade of 75% or higher.
Events can be used as automation triggers, optionally with event values
And events can be used as conditions in automations. This is especially powerful because you can perform logic on how many times the event has happened for that contact.
Events can be used in conditions in automations

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Gifting for WooCommerce Subscriptions

Gifting for WooCommerce Subscriptions

#Overview
In addition to supporting WooCommerce Subscriptions, WP Fusion also includes support for the Gifting for WooCommerce Subscriptions extension. With this integration you can apply tags in your CRM to the recipient of a gifted WooCommerce subscription.
#Tagging
When this extension is active, additional options will appear on the WP Fusion tab when editing your subscription products.

These settings are:

Apply tags to recipient: Any tags specified here will be applied just to the recipient of the gifted subscription.
Remove tags: If selected, the Apply tags to recipient tags applied at purchase will be removed when the subscription is cancelled, put on hold, expired, or is switched.
Remove tags from customer: You can check this box to remove any tags specified in Apply tags to recipient from the customer who made the original purchase. This is useful if you』re using tags to grant access to content and only want the gift recipient to get access.

For more information on how WP Fusion handles subscription statuses see the WooCommerce Subscriptions documentation.
#Usage
This integration is a complicated by the fact that a WooCommerce checkout with a gifted subscription creates two users on your site:

The customer who purchased the subscription, and who is responsible for managing the billing
The gift recipient, who receives access to the purchased product

As such, two contact records will be created in your CRM, and both of them will be tagged.
#The customer
These tags are applied to the customer who made the purchase
The tags configured at the top of the settings are applied to the customer who made the purchase. If there is a payment failure on the subscription, the original customer would be tagged Payment Failed, and you could use that to send an email like 「Your gifted subscription had a payment failure」.
#The gift recipient
These are the only tags that are applied to the gift recipient
After checkout, the gift recipient will only be tagged with the tags specified in the Apply tags to recipient setting. The gift recipient will not be tagged based on changes in the subscription status, since they aren』t responsible for billing.
If you are granting access to content using a tag, you can check Remove tags from customer, this will remove any tags that were applied to the gift recipient from the customer who made the purchase.
In our screenshots above, that means the customer who made the purchase would be tagged Subscription Purchased at checkout, and then this tag would be removed because the subscription was purchased as a gift. The gift recipient would then be tagged Gift Recipient and Subscription Purchased.
You can use this to ensure that only the gift recipient gets access to the purchased content, protected in this example by the Subscription Purchased tag.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

WooFunnels

WooFunnels

#Overview
WP Fusion includes an integration with WooFunnels to sync your optins and customers to contact records in any one of 40+ CRMs and marketing automation tools.
You can also apply tags in your CRM based on the optin form that was submitted, as well as acceptance or rejection of an upsell.
Because WooFunnels uses WooCommerce for checkout, all of WP Fusion』s WooCommerce features work automatically with WooFunnels.
You can also use WP Fusion』s Abandoned Cart addon to track and recover carts abandoned from WooFunnels checkout pages.
#Custom Checkout Fields
Any custom fields you』ve added to your WooFunnels checkout pages can be mapped to custom fields in your CRM via the Contact Fields tab on the WP Fusion settings page.

The fields will appear beneath the rest of the WooCommerce fields, under the WooFunnels header.
When a customer makes a purchase, any enabled fields will be synced to their corresponding custom fields in your CRM.
#Optins
To enable the integration, click the WP Fusion tab under the Actions menu on your WooFunnels optin, and select Yes for Enable Integration.

When the optin form is filled out, a contact record will be added to your connected CRM. You can also optionally apply tags to the contact.
#Upsells
When configuring your WooFunnels upsells, you have the option to apply tags in your connected CRM when an upsell is accepted or rejected.

These two settings can be found beneath each Offer item when editing any Upsell step in your funnel.
#General Settings
WP Fusion has one general setting for WooFunnels, at Settings » WP Fusion » Integrations.

When you enable Run on Primary Order Accepted, WP Fusion will kick in and send data to your CRM when the WooCommerce order status becomes Primary Order Accepted instead of waiting for the Completed status.
To figure out whether or not you need this enabled, some context:

By default WP Fusion doesn』t send any data to your CRM until an order status is Processing or Completed in WooCommerce.
With WooFunnels, if you have an upsell, the order status is set to a custom 「Primary Order Accepted」 status while the upsell is shown to the customer.
If the customer either accepts or rejects the upsell, the order status is set to Completed, and WP Fusion will run.
However, if the customer leaves the upsell page, the order status stays as Primary Order Accepted for 5 minutes until it automatically converts to Completed.
This could result in WP Fusion not sending any data to your CRM for 5 minutes while WooFunnels waits for a response to the upsell. Enabling Run on Primary Order Accepted helps make sure that the data is sent to your CRM regardless of whether or not the customer responds to the upsell.

If you need to enable Run on Primary Order Accepted, we recommend running a test checkout to make sure it works properly with your setup.
Due to trying to sync the order details and the upsell details in two stages, it may result in tags being applied twice, which (depending on your CRM) could trigger duplicate emails.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Ontraport Overview

Ontraport Overview

#Overview
WP Fusion』s Ecommerce Addon (available for Plus and Professional license holders) now supports sending ecommerce transaction data to your Ontraport account for sales made in:

WooCommerce
Easy Digital Downloads
Event Espresso
LifterLMS
MemberPress
Give
and Restrict Content Pro

#Global Setup
There are several global settings for Enhanced Ecommerce with Ontraport. These are found within the WP Fusion settings, on the Enhanced Ecommerce tab. The default settings are appropriate for most stores, but you can change them if needed.

#Ontraport Pricing
WP Fusion can send product prices to Ontraport in two different ways:

Use product prices as set in Ontraport: With this setting WP Fusion will just send the ID of the product that was purchased, and Ontraport will calculate the order totals based on the product price that』s set in Ontraport. This is useful if you have a multi-currency store or a store in a different currency than Ontraport supports. For example a product that sells for €100 on your site could be configured in Ontraport with a price of $111. When someone purchases the product, $111 would be recorded on the invoice in Ontraport.
Use product prices as paid at checkout: This setting sends the product prices as they』re paid at checkout. With this setting a €100 purchase in WooCommerce would be recorded as a $100 purchase in Ontraport. It also works with discounts, so a $100 purchase in WooCommerce with a 20% off coupon would show as $80 in Ontraport.

#Shipping Product
Ontraport doesn』t currently have an API method for tracking shipping charges. To get around this, WP Fusion can create a pseudo-product named 「Shipping」 which is added to your invoices and includes the shipping amount paid by the customer.

By default WP Fusion will create a new product to record shipping charges automatically during checkout. To disable this feature select Don』t Track Shipping from the dropdown. You can also select a custom product to use to record shipping charges.
#Taxes
By default WP Fusion excludes taxes from product prices sent over the API. However if you sell your products tax-inclusive (for example in Australia) you can select Include in product prices to send the product prices tax-inclusive.
Or, optionally, you can select a pre-existing tax object in Ontraport to be used for taxes on your products.
Note: If you』ve just created a tax object in Ontraport, click Resynchronize Available Tags and Fields from the Setup tab and reload the page to load the new tax object into the dropdowns.
A WooCommerce purchase synced into Ontraport using WP Fusion, using a tax object with a 10% tax rate
When a tax object is selected, WP Fusion will send your product prices to Ontraport without tax, and Ontraport will then calculate the tax on the order based on the tax rate set on your tax object.
As an example, let』s imagine that we』re selling a Hoodie for $5, and there』s a 10% tax configured in WooCommerce. For each of the options in WP Fusion, the data would show in Ontraport as:
Don』t sync taxes:
Hoodie: $5
Tax: $0 ($0.50 tax is ignored)
Include in product prices:
Hoodie: $5.50 ($5 + $0.50 tax)
Tax: $0
Existing Ontraport tax object set to 10%:
Hoodie: $5
Tax: $0.50 (calculated by Ontraport)
#Sync Attributes
Some WooCommerce extensions (like WooCommerce Product Addons) collect additional information from the customer for certain products. For example a ring could have a custom engraving, or a shirt might have a size and a color.
Enabling Sync Attributes will add selected attributes as separate line items to the invoice in Ontraport. It』s recommended to leave this disabled unless you need to see that data in Ontraport.
#Product Setup
After you install the Ecommerce Addon (or update to the latest version), WP Fusion will load a list of all configured products in your Ontraport account.
When you go to configure a product in one of our supported ecommerce plugins, you』ll see a new dropdown field where you can link a product on your store with a product already in your Ontraport account.

If you don』t already have the products created in Ontraport, don』t worry… WP Fusion will automatically create them for you at the time of checkout, based on the existing details. WP Fusion will intelligently detect variable products in WooCommerce and create additional Ontraport products based on those variations.
#How it Works
When a customer checks out on your site, WP Fusion will create a new transaction in Ontraport with the products purchased, the quantities, and total sale value. This sale data will be tied to the contact record who made the purchase.
#How it Looks
Products dynamically added to the Ontraport products list, including variable products.
Purchases will be tracked in Ontraport』s purchase logs and can be used in all reports.
You can also view a customer』s purchase history from the Purchases tab within their contact record.
#Video – Enhanced Ecommerce – Ontraport

#Refunds
If you refund an order in WooCommerce, or change an order』s status to Refunded, the transaction will automatically be updated in Ontraport.

#Affiliates / referral partners
WP Fusion will automatically detect Ontraport partner tracking cookies and will associate them with new orders sent over the API.
This will work as long as the oprid cookie is set, which requires Ontraport site tracking to be enabled on your site.

When a referral is recorded for an order it will be logged in the WP Fusion logs with a message, 「Recording referral for partner ID」.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

WooCommerce Deposits

WooCommerce Deposits

WP Fusion works with WooCommerce Deposits to allow you to tag customers when a deposit has been paid, in addition to our other WooCommerce functionality.

When WooCommerce Deposits is active, an additional tag select box will appear in the WP Fusion tab while editing the product. You can specify any additional tags here that you』d like to be applied when an order with a deposit has been completely paid.

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

AgileCRM Overview

AgileCRM Overview

#Overview
WP Fusion』s Ecommerce Addon (available for Plus and Professional license holders) supports sending ecommerce transaction data to your AgileCRM account for sales made in:

WooCommerce
Easy Digital Downloads
Event Espresso
LifterLMS
MemberPress
Give
and Restrict Content Pro

#Getting Started
After you install the Ecommerce Addon (or update to the latest version), WP Fusion will load a list of all configured products in your AgileCRM account. When you go to configure a product in any of our supported plugins, you』ll see a new dropdown field where you can link a product on your store with a product already in your AgileCRM account.

If you don』t already have the products created in AgileCRM, don』t worry… WP Fusion will automatically create them for you at the time of checkout, based on the existing product details in WordPress. WP Fusion will intelligently detect variable products in WooCommerce and create additional AgileCRM products based on those variations.
#
#How it Works
When a customer checks out on your site, WP Fusion will create a new deal in AgileCRM with the products purchased, the quantities, and total sale value. This sale data will be tied to the contact record who made the purchase.
#How it Looks
Deal added to the 「Won」 column with order number and order value
Deal details with products purchased
#Video – Enhanced Ecommerce – AgileCRM

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

Bento Event Tracking

Bento Event Tracking

#Overview
Using WP Fusion you can track events from supported plugins in Bento.

The Event Tracking addon currently supports the following plugins:

Easy Digital Downloads
EDD Software Licensing
Gravity Forms
LearnDash
LifterLMS
WooCommerce

Coming soon:

BuddyBossGamipress
Presto Player

#How it works
When an event is tracked in a supported plugin, it will be recorded to the WP Fusion activity logs, and sent to the corresponding person』s contact record in Bento.
Tracked events will then show up in that contact』s Events timeline.
#How it looks
Events are displayed on the Events timeline on Bento contact records.

Events can also be used as workflow triggers.

 

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No

GiveWP

GiveWP

#Overview
WP Fusion integrates with the GiveWP donation plugin to sync donors with any one of 40+ supported CRMs and marketing automation platforms, and apply tags and/or lists based on their donation level and subscription status.
#Donation Form Settings
With WP Fusion active, a new pane will appear when editing the settings for any donation form.

Here you can specify whether or not contacts should be added to your CRM after they make a donation. You can also specify any tags to apply.
#Donation Level Settings

From the Donation Options tab you can create multiple donation levels. Here you can also tag contacts by level, allowing you to segment donors by their donation amount in your CRM.
#Syncing donors
You can configure the field mapping between your Give donor fields and custom fields in your CRM in WP Fusion』s Contact Fields settings.

For each field in Give, you can select a corresponding field in your CRM. When a donation is made, the enabled fields will be synced to your CRM.
In addition to the standard Give fields, you』ll also see two 「pseudo」 fields:

Donations Count: This will be updated each time a donation is made, and will be a number indicating how many donations have been given by the donor.
Total Donated: This will be updated each time a donation is made, and will be a number indicating the total amount ever donated by the donor.

#Custom Fields
If you』re using the Form Field Manager addon for Give, you can add custom fields to your donation forms, and WP Fusion supports syncing these fields to custom fields in your CRM.

Any custom fields you』ve added to your donation forms will show up under the Give header at Settings » WP Fusion » Contact Fields. From here you can choose a corresponding custom field in your CRM to store the collected data.
#Gift Aid
If you』re using the Gift Aid addon for Give, you can sync the Gift Aid address provided by the donor to custom fields in your CRM.

These Gift Aid fields will appear beneath the main GiveWP fields in the Contact Fields list when the Gift Aid plugin is active.
#Video – GiveWP General Settings and Donation Level Settings

#Email Optins
WP Fusion includes an option to add an email optin checkbox to your GiveWP donation forms.
This can be enabled by checking the box for Email Optin at Settings » WP Fusion » Integrations » GiveWP.

You can customize the message that』s displayed, as well as the tags that are applied when the checkbox is checked.
As an alternative to applying tags, you can also sync the value of the optin checkbox to a custom field in your CRM, by enabling the give_email_optin field for sync at Settings » WP Fusion » Contact Fields » GiveWP.
When enabled the optin checkbox will be displayed at the bottom of the GiveWP donation form.

#Recurring Donations
If you have the Recurring Donations addon for Give active, two additional settings will appear on the WP Fusion panel.

Those options are:

Apply Tags – Recurring: These tags will be applied in your CRM in addition to the 「Apply Tags」 tags, when a donor makes a recurring donation.
Apply Tags – Cancelled: These tags will be applied in your CRM when a recurring donation is cancelled, either by an admin, the user, or the gateway.
Apply Tags – Failed:  These tags will be applied in your CRM when a recurring donation payment fails.

#Video – GiveWP Recurring Donations

#Funds & Designations
WP Fusion also supports the Funds & Designations extension, allowing you to apply tags in your CRM when a donation is made to a specific fund.

The settings for this are found at Settings » WP Fusion » Integrations » Give Funds.
In addition to applying tags, you can also sync a donor』s selected fund to a custom field in your CRM. This can be turned on by enabling the Selected Fund field for sync from the Contact Fields settings.
#Video – GiveWP Custom Fields

#Batch Operations
WP Fusion provides two batch operations for GiveWP data, to allow you to sync historical donor and payment data to your CRM. These can be found under Settings » WP Fusion » Advanced » Batch Operations in the WP Admin.

The two options are:

Give donations: This operation goes through all of your Give donations (payments) in order from oldest to newest. For each payment it will create or update the donor』s contact record in your CRM, and apply any tags configured for that donation form. If the donation is a recurring donation, tags will be applied based on the donor』s current subscription status.
Give donors: This operation goes through all of your Give donors, and for each it will create or update the donor』s contact record in your CRM. If you』ve enabled the Total Donated or Donations Count fields for sync, these will also be updated. This operation does not modify any tags.

#Enhanced Ecommerce
If you』re using WP Fusion』s Enhanced Ecommerce addon, you』ll also see a third option:

Give donations (Ecommerce addon): This operation looks for Give payments that have already been processed by the core WP Fusion (contact records were created and tags were applied), but that haven』t yet been processed by the Enhanced Ecommerce addon.You would only need to run this operation if you』d already been using WP Fusion with Give for some time, and you』ve just installed the Enhanced Ecommerce addon and now need to sync the ecommerce data to your CRM as well.

 

#Was this helpful?

Let us know if you liked the post. That』s the only way we can improve.

Yes

No