Etsy Importer

Etsy Importer

Wordpress plugin

Install on Wordpress

App Details

This plugin will allow you to import your entire Etsy shop’s inventory into WordPress as posts in a Products custom post type. All you have to do is supply an API Key for an Etsy application and the ID of your shop and the plugin will do the rest.

The Etsy Importer will not only import your products but will also:

  • Attach all of the product’s images to the post
  • Set the main product image as the post’s featured thumbnail
  • Add and attach any category added to your product
  • Add and attach any tag added to your product
  • Add the Etsy Product Listing ID, Price, Etsy Product Link, Production Year, and Made For (men/women) meta information to the post
  • Check for new products in your Etsy shop daily and import them automatically once daily. Hands free!
  • Check for existing posts which no longer exist in your shop as active products and set them to draft post status

Not only do we import your products, but we add some shortcodes to help you integrate your products into blog posts.

Pluginize was launched in 2016 by WebDevStudios to promote, support, and house all of their WordPress products. Pluginize is not only creating new products for WordPress all the time, but also provides ongoing support and development for WordPress community favorites like CPTUI, CMB2, and more.

Shortcodes

Display a link to your product – either as a link to the post within your site using the post title as the link text:
[product_link id=569]
[product_link id=569 title=”This is a great new product”]

Or as an external link to your Etsy product page:
[product_link id=569 title=”This is a great new product” external=true]

Display your product’s post content trimmed to whatever length you wish. If no value is set for the length, the full content of the post will be displayed:
[product_content id=569 length=50]

Display your product’s images in a Thickbox gallery using WordPress’ built-in Thickbox jQuery and CSS:
[product_images id=569]
The Etsy Importer allows for the filtering of content throughout the course of posts being imported. Below are the filters available, with details on what they do and how they can be modified.

etsy_importer_default_post_status

The default post status your post will be set to when a product being imported is currently ACTIVE.

Usage:
function your_project_modify_etsy_importer_default_post_status() {

 return 'publish'; } add_filter( 'etsy_importer_default_post_status', 'your_project_modify_etsy_importer_default_post_status' ); 

etsy_importer_updated_post_status

The post status your existing post will be set to when its corresponding product is currently NOT ACTIVE.

Usage:
function your_project_modify_etsy_importer_updated_post_status() {

 return 'draft'; } add_filter( 'etsy_importer_updated_post_status', 'your_project_modify_etsy_importer_updated_post_status' ); 

etsy_importer_updated_post_args

The post arguments passed to update posts when importing products.

Usage:
function your_project_modify_etsy_importer_updated_post_args( $post_args ) {

 // Always set the post with the ID 45 to publish if( 45 == $post_args[ID] ) { $post_args[post_status] = 'publish'; } return $post_args; } add_filter( 'etsy_importer_updated_post_args', 'your_project_modify_etsy_importer_updated_post_args' ); 

etsy_importer_custom_post_type_key

The custom post type key.

Usage:
function your_project_modify_etsy_importer_custom_post_type_key() {

 return 'my_products'; } add_filter( 'etsy_importer_custom_post_type_key', 'your_project_modify_etsy_importer_custom_post_type_key' ); 

etsy_importer_category_key

The custom post type’s Category key.

Usage:
function your_project_modify_etsy_importer_category_key() {

 return 'my_category'; } add_filter( 'etsy_importer_category_key', 'your_project_modify_etsy_importer_category_key' ); 

etsy_importer_tag_key

The custom post type’s Tag key.

Usage:
function your_project_modify_etsy_importer_tag_key() {

 return 'my_tag'; } add_filter( 'etsy_importer_tag_key', 'your_project_modify_etsy_importer_tag_key' ); 

etsy_importer_product_link_shortcode

Filter the output of the product link shortcode.

Usage:
function your_project_modify_etsy_importer_product_link_shortcode( $output, $atts ) {

 // Output a custom value based on the post ID if ( 4439 == $atts['id'] ) { $output = 'This is my custom output for post ID 4439'; } // Return the output return $output; } add_filter( 'etsy_importer_product_link_shortcode', 'your_project_modify_etsy_importer_product_link_shortcode', 10, 2 ); 

etsy_importer_product_content_shortcode

Filter the output of the product content shortcode.

Usage:
function your_project_modify_etsy_importer_product_content_shortcode( $output, $atts ) {

 // Output a custom value based on the post ID if ( 4439 == $atts['id'] ) { $output = 'This is my custom output for post ID 4439'; } // Return the output return $output; } add_filter( 'etsy_importer_product_content_shortcode', 'your_project_modify_etsy_importer_product_content_shortcode', 10, 2 ); 

etsy_importer_product_images_shortcode_args

Filter the args passed when displaying a product’s images.

Usage:
function your_project_modify_etsy_importer_product_images_shortcode_args( $args ) {

 // Limit the number of images displayed to 1 $args['posts_per_page'] = 1; // Return the args return $args; } add_filter( 'etsy_importer_product_images_shortcode_args', 'your_project_modify_etsy_importer_product_images_shortcode_args' ); 

etsy_importer_product_images_shortcode_thumb_size

Filter the size of the thumbnail iamge shown when displaying a product’s images.

Usage:
function your_project_modify_etsy_importer_product_images_shortcode_thumb_size( $atts ) {

 // Use the 'large' image size to display images return 'large'; } add_filter( 'etsy_importer_product_images_shortcode_thumb_size', 'your_project_modify_etsy_importer_product_images_shortcode_thumb_size' ); 

etsy_importer_product_images_shortcode

Filter the output of the product images shortcode.

Usage:
function your_project_modify_etsy_importer_product_images_shortcode( $output, $atts ) {

 // Display a different output based on post ID if ( 4439 == $atts['id'] ) { $output = 'Visit my Etsy shop to view my images.'; } // Return the output return $output; } add_filter( 'etsy_importer_product_images_shortcode', 'your_project_modify_etsy_importer_product_images_shortcode', 10, 2 ); 

etsy_importer_product_import_insert_args

Filter the arguments passed when importing your products.

Usage:
function your_project_modify_etsy_importer_product_import_insert_args( $args, $product ) {

 // Filter the post arguments used when importing your posts // In this example, we are adding "My product: " to the beginning of the post title $args['post_title'] = 'My product: ' . esc_html( $product->title ); // Return the output return $args; } add_filter( 'etsy_importer_product_import_insert_args', 'your_project_modify_etsy_importer_product_import_insert_args', 10, 2 ); 

Pricing

Starting from $0 per month.

Check Out the Glossary Widget

By Common Ninja

GlossaryTry For Free!

App Info

Rating

Reviewers

12 reviews

Tags

etsy
import
importer
shop
store

Developed By

coreymcollins

Quick & Easy

Find the Best Wordpress plugins for you

Common Ninja has a large selection of powerful Wordpress plugins that are easy to use, fully customizable, mobile-friendly and rich with features — so be sure to check them out!

Testimonial

Testimonial plugins for Wordpress

Galleries

Galleries plugins for Wordpress

SEO

SEO plugins for Wordpress

Contact Form

Contact Form plugins for Wordpress

Forms

Forms plugins for Wordpress

Social Feeds

Social Feeds plugins for Wordpress

Social Sharing

Social Sharing plugins for Wordpress

Events Calendar

Events Calendar plugins for Wordpress

Sliders

Sliders plugins for Wordpress

Analytics

Analytics plugins for Wordpress

Reviews

Reviews plugins for Wordpress

Comments

Comments plugins for Wordpress

Portfolio

Portfolio plugins for Wordpress

Maps

Maps plugins for Wordpress

Security

Security plugins for Wordpress

Translation

Translation plugins for Wordpress

Ads

Ads plugins for Wordpress

Video Player

Video Player plugins for Wordpress

Music Player

Music Player plugins for Wordpress

Backup

Backup plugins for Wordpress

Privacy

Privacy plugins for Wordpress

Optimize

Optimize plugins for Wordpress

Chat

Chat plugins for Wordpress

Countdown

Countdown plugins for Wordpress

Email Marketing

Email Marketing plugins for Wordpress

Tabs

Tabs plugins for Wordpress

Membership

Membership plugins for Wordpress

popup

popup plugins for Wordpress

SiteMap

SiteMap plugins for Wordpress

Payment

Payment plugins for Wordpress

Coming Soon

Coming Soon plugins for Wordpress

Ecommerce

Ecommerce plugins for Wordpress

Customer Support

Customer Support plugins for Wordpress

Inventory

Inventory plugins for Wordpress

Video Player

Video Player plugins for Wordpress

Testimonials

Testimonials plugins for Wordpress

Tabs

Tabs plugins for Wordpress

Social Sharing

Social Sharing plugins for Wordpress

Social Feeds

Social Feeds plugins for Wordpress

Slider

Slider plugins for Wordpress

Reviews

Reviews plugins for Wordpress

Portfolio

Portfolio plugins for Wordpress

Membership

Membership plugins for Wordpress

Forms

Forms plugins for Wordpress

Events Calendar

Events Calendar plugins for Wordpress

Contact

Contact plugins for Wordpress

Comments

Comments plugins for Wordpress

Analytics

Analytics plugins for Wordpress

Common Ninja Apps

Some of the best Common Ninja plugins for Wordpress

Browse our extensive collection of compatible plugins, and easily embed them on any website, blog, online store, e-commerce platform, or site builder.

Glossary for Wordpress logo

Glossary

Create an interactive glossary that displays clear definitions, images, and search options to help visitors learn terms quickly and navigate complex topics with ease.

LinkedIn Feed Slider for Wordpress logo

LinkedIn Feed Slider

Show LinkedIn posts with a slider that auto updates, presents content in a smooth layout, and keeps visitors engaged.

Logo Slider for Wordpress logo

Logo Slider

Add a logo slider to your site to showcase clients and partners, strengthen brand credibility, and build trust with new visitors.

Multi-Row Image Slider for Wordpress logo

Multi-Row Image Slider

Showcase visuals with a multi row image slider that displays images in layered rows, improves design, and helps visitors explore content more easily.

Donation Form for Wordpress logo

Donation Form

Collect and manage donations securely with a customizable online donation form that supports Stripe or PayPal and helps increase contributions.

Call Button for Wordpress logo

Call Button

Add a call button to your site so visitors can tap to start a phone call instantly, improving direct communication access.

TikTok Feed for Wordpress logo

TikTok Feed

Show your latest TikTok videos in a live feed that keeps content fresh, builds social proof, and keeps visitors engaged.

Linkedin Feed for Wordpress logo

Linkedin Feed

Show LinkedIn posts in a live feed that keeps updates current, builds credibility, and helps visitors engage with your brand.

Wake Up Notifications for Wordpress logo

Wake Up Notifications

Use wake up notifications to re engage visitors with custom alerts that capture attention, boost interaction, and help increase conversions across your site.

Product Blobs for Wordpress logo

Product Blobs

Use product blobs to highlight key items, draw attention to featured products, and guide visitors toward faster and more confident purchase decisions.

AliExpress Reviews for Wordpress logo

AliExpress Reviews

Show AliExpress reviews to build trust, improve credibility, and help visitors make confident purchase decisions that support higher sales.

Social Share Buttons for Wordpress logo

Social Share Buttons

Add social share buttons so visitors share content to major networks, boost engagement, and drive more referral traffic.

More plugins

plugins You Might Like

Discover Apps By Platform

Discover the best apps for your website

WordPress
Wix
Shopify
Weebly
Webflow
Joomla
PrestaShop
Shift4Shop
WebsiteX5
MODX
Opencart
NopCommerce

Common Ninja Search Engine

The Common Ninja Search Engine platform helps website builders find the best site widgets, apps, plugins, tools, add-ons, and extensions! Compatible with all major website building platforms - big or small - and updated regularly, our Search Engine tool provides you with the business tools your site needs!

Multiple platforms