This is an info Alert.
x402 Logo
  • Product
    • Become Agent-Ready
      • Merchants
        Agentic Commerce — list your store across ChatGPT, Gemini, Claude & Perplexity
      • Publishers
        Monetize your content when AI agents read, cite, or train on it
      • SaaS Companies
        Treat AI agents as first-class customers with agent-priced checkout
    • Monetize
      • Monetize MCP Server
        Charge per call on any MCP server in 2 minutes
      • Monetize AI Agents
        Turn n8n, Zapier, Activepieces workflows into revenue
      • Agent Feed
        Pay-per-query access to licensed publisher content for your agents
  • Resources
    • xpay Ecosystem
      • xpay✦ Tools
        1,000+ pay-per-use tools for your AI agents
      • Agent-Ready SaaS Index
        25,481 SaaS scored on agent-buyability
      • SaaS Pricing Database
        Pricing pages indexed across 1,000+ categories
      • Shopify Apps Directory
        Every Shopify app, with its full review history
      • WooCommerce Plugins Directory
        Every WooCommerce plugin, scored on how well it is maintained
      • GitHub
        Open source repositories
    • Agent Building
      • Agent Frameworks
        AI frameworks for building multi-agent systems
      • x402 Integration
        AI frameworks with x402 payment integration
      • Networks
        Blockchain networks supporting x402
    • Company
      • About xpay✦
        Our mission, products, and protocols
      • Blog
        Latest insights and updates
      • Docs
        Complete xpay documentation
  • Pricing
  • Blog
  • Docs
Get Started
  1. xpay✦ Commerce

  2. Directory

  3. WooCommerce plugins

  4. ShoppingFeed

ShoppingFeed

WordPress connection Controller Plugin for ShoppingFeed - Sell on Amazon, Ebay, Google, and 1000's of international marketplaces

50+ active installs
3.7
(3 ratings)
Free on WordPress.org
View on WordPress.orgSupport forum
Will this break my store?

What the WordPress.org registry says about keeping ShoppingFeed running.

WordPress compatibility
Tested to 6.9.5 — 1 branch behind 7.0
Tested against the WordPress branch in use today.
Last updated
4 days ago
At least 13.7 releases a year since launch. WordPress.org only lists versions still available for download, so the real number may be higher.
Requires PHP
7.3
Your host must be running at least this version.
Requires WordPress
5.7
Contributors
2

50+ active installsWordPress.org reports installs in bands, not exact counts.
Maintenance & trust

Scored on how ShoppingFeed is looked after — not on how many stores run it.

85

out of 100
SolidSome ratings or support history.

Maintenance
35 / 35
Updated 3 days ago.
WordPress compatibility
14 / 20
Tested to WP 6.9.5, 1 branch(es) behind.
Support responsiveness
Not enough data
Only 0 support thread(s) — not enough to judge.
Merchant satisfaction
9 / 15
3.7/5 across 3 rating(s).
Listing transparency
10 / 10
Provides: screenshots, description, homepage
1 of 5 measures had too little evidence to score. They are left out of the total rather than counted as zero — otherwise a plugin would be marked down for being small rather than for being poorly kept.Measured 2026-08-02 from the WordPress.org plugin registry.
Ratings

3.7

3 ratings
5★2
4★0
3★0
2★0
1★1
Every rating WordPress.org holds for this plugin, not a sample. Written reviews live in the plugin's WordPress.org reviews forum.

WordPress connection Controller Plugin for ShoppingFeed – Sell on Amazon, Ebay, Google, and 1000’s of international marketplaces

Requirements

Server :

  • PHP version 7.3 or above
  • PHP cURL extension is activated

WordPress :

  • Core version 5.7 or above
  • WooCommerce version 7.0 or above

Orders fulfilled by the marketplaces

The plugin won’t import orders fulfilled by marketplaces by default.

Options are available in the plugin settings to include those orders during the import.

They can be found in the “Orders” tab :

  • Orders fulfilled by marketplace : import orders even if they are fulfilled by the marketplace.
  • Fulfilled by marketplace order’s status : select the status used for orders fulfilled by marketplaces when they are imported.

Shipment tracking support

For now, the only shipment tracking plugins supported are :

  • Advanced Shipment Tracking : https://wordpress.org/plugins/woo-advanced-shipment-tracking/
  • Advanced Shipment Tracking PRO : https://www.zorem.com/product/woocommerce-advanced-shipment-tracking/
  • Woocommerce Shipment Tracking Pro : https://www.pluginhive.com/product/woocommerce-shipment-tracking-pro/

Configuration

To start using the plugin correctly, you need to configure it with your preferences (Feed, Shipping, Orders)

Available hooks

With this snippets below can be added to your theme’s functions.php file or your custom plugin file

Categories

By default, we support product_cat as taxonomy slug to identify product’s categories, you can override it using this snippet :

add_filter( 'shopping_feed_custom_category_taxonomy', 'your_custom_category_function' );

/** @return string */
function your_custom_category_function() {
    return 'your_custom_category_slug';
}

Brands

By default, we don’t support any custom plugin for product’s brand, you can set custom taxonomy slug to identify it by using this snippet :

add_filter( 'shopping_feed_custom_brand_taxonomy', 'your_custom_brand_function' );

/** @return string */
function your_custom_brand_function() {
    return 'your_custom_brand_slug';
}

EAN

By default, we don’t support any custom plugin for product EAN, you can set custom taxonomy slug to identify it by using this snippet :

add_filter( 'shopping_feed_custom_ean', 'your_custom_ean_function' );

/** @return string */
function your_custom_ean_function() {
    return 'your_custom_ean_slug';
}

Feed’s products list args

To export the feed, we use the plugin’s setting, if you want to add/use specific args, you can use the following snippet

add_filter( 'shopping_feed_products_custom_args', 'your_custom_args_function' );

/** @return array */
function your_custom_args_function() {
//array of args
    return array();
}

You can find all available args here
WooCommerce documentation

Orders to import (statuses)

By default, we import orders with ‘waiting_shipment’ status, if you want to import more statuses or a specific one, you can use the following snippet

add_filter( 'shopping_feed_orders_to_import', 'your_custom_statuses_function' );

/** @return array */
function your_custom_statuses_function() {
    // array of statuses (strings)
    return array();
}


Status available : created, waiting_store_acceptance, refused, waiting_shipment, shipped, cancelled, refunded, partially_refunded, partially_shipped

more details here

Tracking number

If you want to set a custom meta key to identify it, you can use the following snippet

add_filter( 'shopping_feed_tracking_number', 'your_custom_tracking_number_function' );

/** @return string */
function your_custom_tracking_number_function() {
    return ‘your_custom_order_meta_key’
}

Tracking url

If you want to set a custom meta key to identify it, you can use the following snippet

add_filter( 'shopping_feed_tracking_link', 'your_custom_tracking_url_function' );

/** @return string */
function your_custom_tracking_url_function() {
    return ‘your_custom_order_meta_key’
}

Extra Fields

Add extra fields for products in product feed

If you want to add an extra fields to products in your XML Feed, you can use the following snippet :

add_filter( 'shopping_feed_extra_fields', 'sf_product_extra_fields', 10, 2 );

/**
 * Include additional fields for products in product feed.
 *
 * @param array $fields
 * @param \WC_Product $product
 *
 * @return array
 */
function sf_product_extra_fields( $fields, $product ) {
    $fields[] = array(
        'name'  => 'my_custom_product_field',
        'value'  => 'my_custom_value',
    );

    return $fields;
}

Add extra fields for variations in product feed

If you want to add an extra fields to variations in your XML Feed, you can use the following snippet :

add_filter( 'shopping_feed_variation_extra_fields', 'sf_product_variation_extra_fields', 10, 2 );

/**
 * Include additional fields for variation in product feed.
 *
 * @param array $fields
 * @param \WC_Product $variation
 *
 * @return array
 */
function sf_product_variation_extra_fields( $fields, $variation ) {
    $fields[] = array(
        'name'  => 'my_custom_variation_field',
        'value'  => 'my_custom_value',
    );

    return $fields;
}

Variation Images

Main image

By default the variation’s thumbnail is used as the main image in the feed.

You can customize the main image using the filter “shopping_feed_variation_main_image”.

add_filter( 'shopping_feed_variation_main_image', 'your_custom_variation_main_images_function', 10, 3 );

/**
 * Use the parent's thumbnail if the variation doesn't have one.
 *
 * @param string $main_image The main image of the variation.
 * @param \WC_Product_Variation $variation The variation.
 * @param \WC_Product_Variable $product The product.
 *
 * @return string
 */
function your_custom_variation_main_images_function( $main_image, $variation, $product ) {
    if ( empty( $main_image ) && has_post_thumbnail( $product->get_id() ) ) {
      $main_image = get_the_post_thumbnail_url( $product->get_id(), 'full' );
    }

    return $main_image;
}

Additional images

By default, we don’t support any custom plugin for adding images to WC Product Variation, with this filter you can set the desired images to each variation, you can use the following snippet

add_filter( 'shopping_feed_variation_images', 'your_custom_variation_images_function', 10, 3 );

/**
 * @param array $images
 * @param WC_Product $wc_product
 * @param int $variation_id
 *
 * @return array
 */
function your_custom_variation_images_function( $images, $wc_product, $variation_id ) {
    $images[] = 'https://domain.com/image1.jpg';
    $images[] = 'https://domain.com/image2.jpg';

    return $images;
}
Categories
Marketplaces & channels
Plugin details
Version7.3.1
Last updated2026-07-30 9:14am GMT
Added2019-06-28
Requires WordPress5.7
Tested up to6.9.5
Requires PHP7.3

Tags on WordPress.org
import orders
Marketplace
products feed
shoppingfeed
woocommerce
Alternatives
Other plugins in the same categories.
EU Withdrawal Compliance
1K+ installs
5.0(15)
Dokan: AI Powered WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy
30K+ installs
4.6(766)
MultiVendorX – WooCommerce Multivendor Marketplace AI Powered Solutions
2K+ installs
4.8(432)
MarketKing — Ultimate WooCommerce Multivendor Marketplace Solution
800+ installs
5.0(18)
Product Sync for WooCommerce – API Import, Dropshipping & Inventory Sync
300+ installs
5.0(16)
Vitepos – Point of Sale (POS) for WooCommerce
2K+ installs
4.7(53)
x402 Logo

The agent-readiness stack for the AI shopping era — helping merchants, publishers and SaaS companies get discovered, cited and transacted with by ChatGPT, Perplexity, Claude, Gemini and the custom shopping agents underneath them.

CompanyAgentically Inc. (d/b/a xpay✦)1875 Mission St, Ste 103San Francisco, CA 94103, United Stateslegal@xpay.sh · privacy@xpay.sh
or ask your AI app
Company
About xpayAgency PartnersGitHubDiscordllms.txt
DevelopersDocumentationAPI ReferenceSDKs & LibrariesQuickstart GuideOpenAPI Spec
Stay Updated
Occasional product updates and agent-readiness playbooks from xpay (Agentically Inc.) — typically a couple of emails a month. Double opt-in: we email you a link to confirm before sending anything, and every email has one-click unsubscribe.
Social
  • For Publishers
    • News
    • Finance
    • Dev / Tech
    • Travel
    • View all verticals
  • Agent Feed
    • AI Search Engines
    • RAG Builders
    • Browser Agents
    • Vertical Research
    • Browse full catalog
  • Agent-Ready Index
    • SaaS Pricing Database
    • Agent-Ready SaaS Index
    • Verified band
    • AI & ML
    • Sales & CRM
  • Products
    • Pricing Widget
    • Monetize MCP Server
    • Paywall
    • Smart Proxy
    • Monetize AI Agents
    • xpay x402 Facilitator
  • Agentic Economy
    • Timeline
    • Resources
    • Manifesto
    • Stack
  • Agentic Commerce
    • Get listed
    • ChatGPT Ads
    • How ChatGPT Ads work
    • ChatGPT Ads · Apparel
    • ChatGPT Ads · Health & Beauty
    • xpay Listings · Amazon + Google
    • Pricing
    • Free audit
    • Shopify
    • WooCommerce
    • Apparel & Accessories
    • Health & Beauty
    • Overview
  • Commerce Index
    • Shopify apps directory
    • Agentic Commerce Ready Index
    • Methodology
    • Pet brands · WooCommerce
    • Pet brands · Shopify
  • Marketplace
    • 🛍️ xpay.deals — agentic storefront for deals
  • Protocols
    • Overview
    • x402
    • MPP
    • UCP
    • ACP
    • AP2
    • TAP
    • A2A
  • Agent Frameworks
    • Overview
    • LangChain
    • CrewAI
    • Claude MCP
    • AutoGPT
    • LangChain vs Mastra
    • LangGraph vs Pydantic AI
  • Company
    • About xpay
    • Blog
    • Docs
    • GitHub
  • Free prompts
    • Ecommerce prompts
    • Email marketing prompts
    • Product description prompts
    • Facebook ad prompts
    • Skincare prompts
    • Supplement prompts
    • Wine prompts
    • Electronics prompts

© 2025 Agentically Inc. All rights reserved.
Privacy PolicyTerms of UseAcceptable Use Policy