Risk Free, Backed By Our 90-Day Money Back Guarantee
 - 
Read More
Lifetime Licenses Are Ending Soon, Get Yours Before They're Gone
 - 
Read More
Risk Free, Backed By Our 90-Day Money Back Guarantee
Pricing

You may have seen some references on our site to annual licensing or renewals.

All plugins currently come with a lifetime license, no matter what the site says.

We’re currently running tests before we make the switch to annual pricing. Check the Discounts tab to purchase our other plugins and get a lifetime license before they’re gone.

I Understand I Have a Lifetime License
Now is your last chance to buy a lifetime license before we switch to annual pricing. Existing licenses will be unaffected.
Read More
200,000+ Active Installs
1500+ 5 Star Reviews
Docs Menu

The best import export plugin for WordPress & WooCommerce.

Complete, granular control of your data with an easy to use drag & drop interface.
  • 90 Day Money Back Guarantee
  • Unlimited Installs
  • Lifetime Licence
  • Fast, World-Class Support
Get Started
90 Day Money Back Guarantee

Integrate Zapier with WooCommerce for Real-Time Exports

To integrate Zapier with WooCommerce, create a new Zap that executes an action every time the export runs, such as adding the exported order data to a Google Sheet. The Zap ensures that this action occurs automatically.

Table of Contents

Advanced Topics

Step 1: Set Up a Real-Time Export Beforehand

First, create your real-time export, as explained in How to Run Real-Time Exports. In this example, we're creating a real-time export for WooCommerce orders, meaning it will export each order as it is completed on the site. However, the same instructions apply to other post types.

Step 2: Create a Trigger in Zapier

Once you have a real-time export that works, you need to create a trigger. To do this, go to Zapier.com, create an account (or log in with your existing account), and click the + Create Zap button.

Zapier WooCommerce Create Zap

App & Event

Zapier will ask you to define what you want to do. For the app portion of this, select WP All Export Pro.

Zapier WooCommerce Select App

You then choose the event. In this case, select Real Time Export Completed. This is what starts the Zap and is the first part of establishing a connection between Zapier and WooCommerce.

Zapier WooCommerce Real Time Export Completed

Account

Next, you need to select your account or connect a new one. Basically, you link your WP All Export Pro installation to this Zapier account.

Zapier WooCommerce WPAI Account

To add a new account, use the + Connect New Account option from the dropdown list.

Trigger

Finally, you need to select the real-time export that will trigger the Zap. In this case, choose our recently created orders export:

Zapier WooCommerce Order Export

Test

In this part, Zapier lets you test the Zap to make sure that everything works as expected:

Zapier WooCommerce Test Trigger

Once the trigger has been completed, you can move on to the action.

Step 3: Create an Action in Zapier

The action will apply to the recently exported data obtained via WP All Export. Since we're handling WooCommerce orders, let's say that we want each new completed order to become a new row in an existing Google Sheet.

To do this, we connect to Google Sheets and use an action to add a new row. Zapier is effectively the middleman between WP All Export and Google Sheets.

While the specific fields and setup may change, you can apply these instructions to other actions and applications such as Google Drive, Email, etc.

App

We begin by defining the action that will be performed after the Zap starts. For the app portion of this, we choose Google Sheets.

Zapier WooCommerce Action App

Event

For the event, we choose to Create Spreadsheet Row. This is performed when the Zap runs.

Zapier WooCommerce Action Event

Account

Next, select the Google Sheets account to use:

Zapier WooCommerce Google Account

Action

Here, we define where and how to import the data. We choose the drive where the sheet is stored, the spreadsheet itself, and the worksheet within the spreadsheet where the data will be added.

This spreadsheet should exist beforehand, so if you haven't created it yet, go ahead and make the desired spreadsheet, including headers. You can save the Zap and then continue editing it later.

After choosing your spreadsheet, the Zapier interface will update to show the input fields based on the headers. This is where you input the data from the export:

Zapier WooCommerce Google Sheet Action

You can search the data from a list or use the search field to locate the exported data quickly. Once you've set up all fields, proceed to the test.

Test

Here, we test the action and make sure that the data is correctly added to the Google Sheet. After running the test, you can check the sheet itself.

Zapier WooCommerce Publish App

Step 4: Publish Your Newly Created Zap

When you're finished setting up the trigger and action, click the Publish Zap button (see above). That's it! You have connected Zapier to WooCommerce, allowing you to send each new exported WooCommerce order to a Google Sheet.

After the Zap is published, it will perform the designated action every time the real-time export runs on your site — specifically, every time an order is completed for a customer.

Export WordPress to any CSV, XML, or Excel

  • Any theme or plugin
  • Images & galleries
  • Custom fields
  • Zapier integration
  • Woo, ACF, Meta Box, JetEngine

Integrate Zapier and WooCommerce — Advanced Topics

Stop/Pause Processing the Zap or Real-Time Export

To stop or pause the Zap via Zapier, use the On/Off button.

Zapier WooCommerce Turn On Off

Alternatively, you can stop the real-time export via All Export › Manage Exports. Locate your real-time export and hit Disable Export.

Zapier WooCommerce Manage Exports

Export Orders When Status Is Processing Instead of Completed

The real-time export for WooCommerce orders will export each order when it is completed on your site. However, you may need for the export to be fired for a different order status. For example, say you need to export orders when they reach the "processing" order status. To do this, you must perform two actions:

1. Add a filter to the real-time orders export so that it only exports orders with a "wc-processing" status:

Zapier WooCommerce Filter Export

2. Add the following code to your theme's child functions.php file or into a snippets plugin:

 
add_action('woocommerce_order_status_processing', function($order_id){
	// Don't try to call the WP All Export defined function if it's not available.
	if(function_exists('pmxe_woocommerce_order_status_completed')){
		// Execute export using provided order ID.
		pmxe_woocommerce_order_status_completed($order_id);
	}
});

Execute Real-Time Order Export As Soon As a New Order Is Added

The following snippet lets you run the real-time order export as soon as a new order is placed on your site rather than when the order is completed.

add_action('woocommerce_checkout_order_processed', function($order_id){
     // Don't try to call the WP All Export defined function if it's not available.
     if(function_exists('pmxe_woocommerce_order_status_completed')){
     // Execute export using provided order ID.
     pmxe_woocommerce_order_status_completed($order_id);
}
});

Changing A Previously Created Zap

You can change the behavior of a Zap that you've already created to change the way that you connect with Zapier and WooCommerce. Navigate to Zapier, locate your Zap in the Zaps menu, then click on its name. Once the Zap loads, click on Edit Zap, and you'll be able to create a new version of the Zap and publish it.

Integrate Zapier and WooCommerce — Frequently Asked Questions

Can I Use a Different App in My Zapier Action?

Yes. You can set up using this workflow but choose a different app. While we don't provide specific instructions on how to set that particular part, you can get an idea from our example. Everything else from the guide should still apply.

How Do I Use Zapier with WordPress

To use Zapier with WordPress, just follow the steps in this guide but use a WordPress post type for the initial export, e.g., Posts, Pages, Users, etc. Otherwise, there is no difference in the use of Zapier with WordPress versus WooCommerce.

Integrate Zapier and WooCommerce — Related Docs

See the step-by-step instructions on how to set up a Real-time export.

Learn how to integrate a Real-Time export with a programmable API.

Learn how to send your exported data to Zapier.

Integrate Zapier and WooCommerce — Related Videos

The best import export plugin for WordPress & WooCommerce.

Complete, granular control of your data with an easy to use drag & drop interface.
  • 90 Day Money Back Guarantee
  • Unlimited Installs
  • Lifetime Licence
  • Fast, World-Class Support
Get Started
90 Day Money Back Guarantee

Unlimited Installs.
World-Class Support. Money Back Guarantee.

Packages
Standalone
Import
Pro Package
$199
.00
/yr
Save $494, 71% Discount
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
$693 If Purchased Individually
Buy Now
90 Day Money Back Guarantee
Import + Export Pro Package
$299
.00
/yr
Save $1087, 78% Discount
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
$1386 If Purchased Individually
Buy Now
90 Day Money Back Guarantee
WooCommerce Import Package
$169
.00
/yr
Save $29, 15% Discount
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
$198 If Purchased Individually
Buy Now
90 Day Money Back Guarantee
Lifetime License
$1299
One-Time Payment
  • Import Pro + Export Pro
  • All Current Add-Ons
  • All Future Add-Ons
  • Lifetime Support
  • Lifetime Updates
  • No Renewal Fees
Buy Now
90 Day Money Back Guarantee
Import Standalone
$99
.00
/yr
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
Buy Now
90 Day Money Back Guarantee
Import + Export Standalone
$169
.00
/yr
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
Buy Now
90 Day Money Back Guarantee
Export Standalone
$99
.00
/yr
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
Buy Now
90 Day Money Back Guarantee
Packages
Standalone
Import
Pro Package
$16.58
per month, billed annually
Save $494/yr, 71% Discount
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
$693/yr If Purchased Individually
Buy Now
90 Day Money Back Guarantee
Import + Export Pro Package
$24.92
per month, billed annually
Save $1087/yr, 78% Discount
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
$1386/yr If Purchased Individually
Buy Now
90 Day Money Back Guarantee
WooCommerce Import Package
$14.08
per month, billed annually
Save $29/yr, 15% Discount
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
$198/yr If Purchased Individually
Buy Now
90 Day Money Back Guarantee
Lifetime License
$1399
One-Time Payment
  • Import Pro + Export Pro
  • All Current Add-Ons
  • All Future Add-Ons
  • Lifetime Support
  • Lifetime Updates
  • No Renewal Fees
Buy Now
90 Day Money Back Guarantee
Import Standalone
$8.25
per month, billed annually
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
Buy Now
90 Day Money Back Guarantee
Import + Export Standalone
$14.08
per month, billed annually
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
Buy Now
90 Day Money Back Guarantee
Export Standalone
$8.25
per month, billed annually
  • Import Pro
Import Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
  • Export Pro
Export Add-Ons
  • Woo
  • ACF
  • Meta Box
  • JetEngine
  • Gravity Forms
  • Users
Buy Now
90 Day Money Back Guarantee

Unlimited Installs.
World-Class Support. Money Back Guarantee.

Developer
Pro features to get your WordPress data moving
Normally $299/yr
$149
.00
/yr
Save $150
Import & Export Pro
  • Posts Types, Pages & Taxonomies
  • Custom Fields & Meta Support
  • WordPress Users Support
  • Gravity Forms Entries
  • Developer Tools
  • Pro Settings
  • See detailed list of features
    Buy Now
    90 Day Money Back Guarantee
    Professional
    Everything you need to import and export anything
    Normally $599/yr
    $299
    .00
    /yr
    Save $300
    All Features & Integrations
  • WooCommerce
  • Bulk Editing & Data Migration
  • Advanced Custom Fields
  • JetEngine
  • Meta Box
  • Manual Scheduling
  • See detailed list of features
    Buy Now
    90 Day Money Back Guarantee
    Unlimited Lifetime
    All features and integrations forever for unlimited sites
    Normally $1599
    $1299
    .00
    once
    Limited-Time Offer
    ONE-TIME PAYMENT 
  • Import Pro + Export Pro
  • All Current Features & Integrations
  • All Future Features & Integrations
  • Lifetime Updates
  • Lifetime Support
  • No Renewal Fees
  • See detailed list of features
    Buy Now
    90 Day Money Back Guarantee

    Risk Free with our Money-Back Guarantee

    We would love for you to try WP All Import. Our 90-day money-back guarantee means that if you decide our plugins don’t meet your needs, just let us know, and we’ll gladly give you a full refund, no questions asked.
    200,000+ Active Installs
    1500+ 5 Star Reviews
    Developer
    $149
    .00
    /yr
    Buy Now
    Professional
    $299
    .00
    /yr
    Buy Now
    Ultimate Lifetime
    $1299
    Buy Now
    Unlimited Lifetime Package Features
    included in only in the Ultimate Lifetime Package
    One-Time Payment. No Renewal.
    All Future Add-Ons
    Developer Package Features
    included in all packages
    Untilimited Site Activations
    World-Class Support
    Import & Export Custom Post Types, Pages & Taxonomies
    Import & Export Custom Fields & Meta
    Download Import File from URL & FTP
    Export to CSV, XLSX, and XML
    Import & Export Filters
    Import & Export WordPress Users
    Import & Export Gravity Forms Entries
    Delete Missing Records on Import
    Run PHP Functions on Imports & Exports
    Choose Which Data to Update
    WP_Query Exports
    Secure Client Mode for Exports
    Zapier Integration for Exports
    Professional Package Features
    everything the Developer package, plus:
    Import & Export WooCommerce Products
    Import & Export WooCommerce Product Galleries
    Import & Export WooCommerce Orders
    Import & Export WooCommerce Customers
    Import & Export WooCommerce Reviews & Coupons
    Sync WooCommerce Stock & Prices
    Import & Export ACF Fields
    Import & Export JetEngine Fields
    Import & Export Meta Box Fields
    Export to Google Merchant Center
    Migrate Data Between Sites
    Bulk Edit with Export, Edit, Import
    Manual Scheduling for Imports & Exports

    Have any questions? 

    These are some of the most frequent questions we get about how to get data imported to or exported from WordPress

    Can I use any file type to import my data?

    Absolutely. It doesn't matter how big your CSV file is or what your column names are. Just use our Drag and Drop interface to map incoming data elements to their target fields, and you'll be done in minutes.

    Can I import Excel or Google Sheets to WordPress?

    Yes. Importing any spreadsheet is straightforward. Need to import Google Sheets to WordPress? Just copy and paste its URL. Need to import into WordPress from Excel? Same thing!

    How does my WordPress import data need to be organized?

    Our plugin is extremely flexible, so you probably won't have to make any changes to your data. You can try your WordPress import right now, and if you have any issues, we'll be glad to help you out.

    What will my WordPress export file look like?

    Unlike other solutions, our plugin gives you complete control over your WordPress export, including how it's formatted. You can modify fields, merge them together, and even create completely custom fields using embedded PHP.

    How do I export WordPress data to CSV?

    To export data to a CSV file, you don't have to do anything at all, as CSV is our default export format. If you want to export to other file formats, just change the export type in the Drag & Drop screen.

    Can I export WooCommerce products?

    Yes. Our software is completely integrated with WooCommerce. It provides full support to export WooCommerce customers, orders, products, variations, attributes, subscriptions, and reviews.
    cross