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

Hiring: Customer Support

$30k per year: $30 per hour, 20 hours per week.

Our team is 100% remote and distributed across the world. We have team members in Australia, the US, Thailand, Spain, Germany, the UK, Brazil, Sri Lanka Argentina, Colombia, South Africa, the UAE, Romania, and more. It doesn't matter where you live or what time zone you're in.

Your main responsibility will be to reply to customers asking for help with WP All Export and WP All Import. You need to love to help others and be able to keep it friendly even when dealing with difficult customers. You need to enjoy the whole process of turning anxious, confused, or angry customers into happy ones. You must be an excellent writer. We want our support replies to be friendly, easy to understand, and concise.

Flexibility

We are a small team but we try to give everyone as much flexibility as possible. Flexibility means that you can work in the mornings, or the evenings, or both, or in the middle of the night, or whatever. It means you can take two weeks off to go on a trip. It means you can wake up and decide you don't feel like working and take the day off without telling anyone.

We aim to be as asynchronous as possible. We hate meetings, live chat, Slack, etc because it causes interruptions. You will have a list of prioritized tasks assigned to you, and we'll do our absolute best to leave you alone so that you can work on them in peace on your own time.

These do a good job describing how we work:

As a remote company, it's important to us to keep a strong line between our personal life and our work. Some places like to tell their employees they are joining a family. They have regular events unrelated to work like social chat rooms, hangouts over Zoom, etc. This is just another way for these companies to emotionally manipulate people into doing more work. You have an actual family and working with Soflyy means you can organize your work around the rest of your life, using your time as you see fit.

For most of us here, that is the primary draw. If you take a look at https://www.wpallimport.com/about/, you will notice that we have a lot of people who have worked here for many years. Our employee attrition rate is close to zero, and we think the flexibility we offer is the primary reason.

Responsibilities

  • Responding to customer support inquiries
  • Adding to and improving our documentation
  • Aggregating customer feedback and assisting us with development/product roadmap decisions
  • Writing concise bug reports based on support tickets that are a result of bugs in WP All Export or WP All Import
  • Testing development versions of WP All Import and WP All Export
  • And perhaps even recording walkthrough videos and other marketing tasks

Requirements

The only thing we care about is the ability to provide high-quality customer support to our clients. The more of these boxes you can tick the better, in descending order of importance:

Apply Now

1. Relevant Skills & Experience

Write a paragraph or two to introduce yourself, describe your experience with WordPress, and let us know where you found our hiring post.

If possible, describe and include links to the work that you are most proud of. Most people don't have any code samples or plugins on WordPress.org or any examples of their work, so if you do that's a quick way to stand out.

2. Writing Samples

For each writing sample, please include one or two sentences to describe the assumptions you are making about the user and how that affects the information you are providing to them. The easiest way to stand out is to have succinct replies with links to documentation or a screenshot where helpful. The primary reason we pass on candidates is that their replies are too long, even if they are factually correct.

This article does a good job explaining what we think is good writing and how to create it: http://www.paulgraham.com/talk.html

Note that ChatGPT is not able to output the code required below. We are flooded with applications that are very obviously pasting in garbage output generated by ChatGPT. Please do not do this, it is a waste of everyone's time. You actually need to know how to use WordPress at an expert level, read documentation, and write code to complete the rest of the application.


EXAMPLE WRITING SAMPLE

Question: A customer wants to import products but can't figure out how to round the data in the price column of their import file to the nearest dollar.

Assumption: The user is already familiar enough with WP All Import to have tried an import, but they probably don't know how to use PHP functions or that you can use them in an import. So, I'll send them the function to use and documentation so they can learn more about how it works.

Reply:

Hi Customer,

In order to round your product prices to the nearest dollar, you can wrap the price in the round() function, like this: [round({price[1]})]

You can read more about the round function here: http://php.net/manual/en/function.round.php

And you can read more about using functions in WP All Import here: http://www.wpallimport.com/documentation/developers/execute-php/

SAMPLE 1

A customer wants to use WP All Export to create an XML feed from their WooCommerce products. They tried but can't figure out how the custom XML templates work. Write back and explain to them how they can create an XML feed that looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<products>
    <product>
        <title>Tomato</title>
        <price>1.99</price>
        <images>
            <image>http://mywebsite.com/wp-content/uploads/tomato1.jpg</image>
            <image>http://mywebsite.com/wp-content/uploads/tomato2.jpg</image>
            <image>http://mywebsite.com/wp-content/uploads/tomato3.jpg</image>
        </images>
    </product>
    <product>
        <title>Potato</title>
        <price>.59</price>
        <images>
            <image>http://mywebsite.com/wp-content/uploads/potato1.jpg</image>
            <image>http://mywebsite.com/wp-content/uploads/potato2.jpg</image>
        </images>
    </product>
</products>
XML
SAMPLE 2

A customer has e-mailed the support desk stating they have a CSV file of products with two columns: sale_price and regular_price. They want to import products only if the sale price is discounted more than 30% from the regular price. Write back explaining how to do this.

Hints: http://www.wpallimport.com/documentation/advanced/filtering-with-xpath/ and https://www.w3schools.com/xml/xpath_operators.asp (div operator).

SAMPLE 3

A customer has an Excel file and wants to know if WP All Import can import the data. You've looked at their spreadsheet and determined that WP All Import will be able to.

SAMPLE 4

A customer wants a refund but is outside of our 90-day money-back guarantee.

3. Use WP All Import

Create a debug installation with WP All Import at http://www.wpallimport.com/debug and then import the following file as WooCommerce variable products. Include the login details for the /debug site below. Import this file: http://www.wpallimport.com/wp-content/uploads/2014/12/BurtonSacks.csv

Hint: http://www.wpallimport.com/documentation/woocommerce/variable-products/

Write a PHP function and add it to the Function Editor. Pass the product color through your function - it should change:

'Fish Blanket' to 'Shrimp Blanket'
'Digi Plaid' to 'Sgt Bilko Brown'
'Rasta' to 'Pasta'

Hint: http://www.wpallimport.com/documentation/developers/execute-php/

Applicant Information

Name(Required)

What are your chances of getting this job?

If you meet the minimum requirements, then it all comes down to the writing samples. We need the writing samples to be clear, concise, and free of spelling and grammar errors. The previous times we've posted this job the vast majority of applicants either got the answers wrong, made spelling errors, wrote long replies, or were otherwise unable to meet our standards.

The primary thing we're looking for in the replies is brevity. Take another look at the sample reply above. It doesn't explain what we assume the reader already knows, it has links to documentation, and it is as brief as possible. We get very few applicants that write like this, and the vast majority of applicants who do have been hired.

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