[WordPress] 外掛分享: ShoppingFeed

前言介紹

  • 這款 WordPress 外掛「ShoppingFeed」是 2019-06-27 上架。
  • 目前有 60 個安裝啟用數。
  • 上一次更新是 2025-03-20,距離現在已有 44 天。
  • 外掛最低要求 WordPress 5.7 以上版本才可以安裝。
  • 外掛要求網站主機運作至少需要 PHP 版本 7.3 以上。
  • 有 3 人給過評分。
  • 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。

外掛協作開發者

beapi | shoppingfeed |

外掛標籤

Marketplace | woocommerce | shoppingfeed | woocommerce shoppingfeed | create woocommerce products shoppingfeed |

內容簡介

3>插件介紹

這是一款 WordPress 連接控制器插件,可用於 ShoppingFeed 快速在 Amazon、Ebay、Google 和數百個國際市場上出售。

需求條件
伺服器:

PHP 版本必須為 5.6 或以上
必須啟用 PHP cURL 擴展程式

WordPress:

核心版本必須為 5.2 或以上
WooCommerce 版本必須為 3.8 或以上

運送追蹤支援

目前,只有支援以下訂單追蹤外掛程式:

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/

設定

要正確使用此插件,您需要根據您的偏好設定它的 Feed、運送和訂單。

可用的 Hooks

您可以在下面的程式碼中使用以下片段來添加到您的主題 functions.php 檔案或自定義的插件檔案中

分類

預設情況下,我們支援 product_cat 作為辨識產品類別的稅目縮寫,您可以使用以下程式碼重置它:

add_filter( 'shopping_feed_custom_category_taxonomy', 'your_custom_category_function' );

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

品牌

預設情況下,我們不支援任何自訂外掛程式來辨識產品的品牌,但您可以使用以下程式碼設置自定的稅目縮寫:

add_filter( 'shopping_feed_custom_brand_taxonomy', 'your_custom_brand_function' );

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

EAN

預設情況下,我們不支援任何自訂外掛程式來識別產品 EAN 碼,但您可以使用以下程式碼設置自定的稅目縮寫:

add_filter( 'shopping_feed_custom_ean', 'your_custom_ean_function' );

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

Feed 的產品列表參數

為了匯出飼料,我們使用插件設定,如果您想添加/使用特定的參數,您可以使用以下程式碼

add_filter( 'shopping_feed_products_custom_args', 'your_custom_args_function' );

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

您可以在WooCommerce documentation中找到所有可用的參數。

要匯入的訂單(狀態)

預設情況下,我們會匯入具有“waiting_shipment” 狀態的訂單,如果您想匯入更多狀態或特定的狀態,您可以使用以下程式碼

add_filter( 'shopping_feed_orders_to_import', 'your_custom_statuses_function' );

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

可用的狀態:created、waiting_store_acceptance、refused、waiting_shipment、shipped、cancelled、refunded、partially_refunded、partially_shipped

更多資訊請參閱這裡

追蹤號碼

原文外掛簡介

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 5.1 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
If you want to add an extra fields to your XML Feed, you can use the following snippet
add_filter( 'shopping_feed_extra_fields', 'your_custom_fields_function', 10, 2 );

/** @return array */
function your_custom_fields_function($fields, $wc_product) {
$fields[] = array('name'=>'my_field', 'value'=>'my_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;
}

各版本下載點

  • 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
  • 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「ShoppingFeed」來進行安裝。

(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。


1.0.0 | 2.0.0 | 3.0.0 | 3.1.0 | 3.2.0 | 3.3.0 | 3.4.0 | 3.5.0 | 3.6.0 | 3.7.0 | 3.8.0 | 3.9.0 | 4.0.0 | 4.1.0 | 4.2.0 | 4.3.0 | 4.5.0 | 4.6.0 | 4.7.0 | 4.8.0 | 4.9.0 | 5.0.0 | 5.1.0 | 5.2.0 | 5.4.0 | 5.5.0 | 5.6.0 | 6.0.0 | 6.0.1 | 6.0.2 | 6.0.3 | 6.0.4 | 6.0.5 | 6.0.6 | 6.0.7 | 6.0.8 | 6.0.9 | 6.1.0 | 6.1.3 | 6.1.4 | 6.1.5 | 6.1.6 | 6.1.7 | 6.1.8 | 6.1.9 | 6.2.0 | 6.3.0 | 6.4.0 | 6.5.0 | 6.5.1 | 6.6.0 | 6.7.0 | 6.8.0 | 6.9.0 | trunk | 6.0.10 | 6.0.11 | 6.0.12 | 6.0.13 | 6.0.14 | 6.0.15 | 6.0.16 | 6.0.17 | 6.0.18 | 6.0.21 | 6.0.22 | 6.0.23 | 6.0.24 | 6.0.25 | 6.0.26 | 6.0.27 | 6.0.28 | 6.0.29 | 6.0.30 | 6.0.31 | 6.0.32 | 6.0.33 | 6.1.10 | 6.1.11 | 6.1.12 | 6.1.13 | 6.1.14 | 6.1.15 | 6.1.16 | 6.1.17 | 6.1.18 | 6.1.19 | 6.1.20 | 6.10.0 | 6.11.0 | 4.4.0(bug testing) |

延伸相關外掛(你可能也想知道)

  • Meks ThemeForest Smart Widget 》ThemeForest Smart Widget 是一個簡單而強大的 WordPress 外掛,可讓您將 ThemeForest 的產品顯示為 WordPress 小工具。提供幾個智能選項供選擇和排序。您可...。
  • WC Vendors – WooCommerce Multivendor, WooCommerce Marketplace, Product Vendors 》Vendors Marketplace 搭載於 WooCommerce 的外掛程式, , , 立即嘗試我們的免費展示:啟動您的展示, 了解 WC Vendors Pro:WC Vendors Pro 的所有功能, , , 由...。
  • MarketKing — Ultimate WooCommerce Multivendor Marketplace Solution 》MarketKing 是現代的多供應商市場平台,具有令人驚艷的使用體驗和強大的功能。建立您夢想中的市場。, 🏆 優秀的市場解決方案 - 獲得 WPLift、Envato Market、...。
  • ACF For Dokan 》在使用 Dokan 時必備的外掛程式, 為賣家創建自定義字段,就像您為管理員創建的自定義字段一樣,並使其從他們的儀表板中可訪問,以節省開發時間。, , 這能改善...。
  • Faire for WooCommerce 》Faire 是一個易於使用的 B2B 平台,可將世界各地的獨立零售商和品牌連接起來。開始向美國、加拿大、英國、歐洲和澳洲的 600,000 多個獨立零售商出售產品。無...。
  • Kinguin API for WooCommerce 》這個 WordPress 插件可以將 70,000 個數字產品(包括遊戲、軟體、禮品卡和遊戲內容)匯入到您的網店。, 功能, , 包含 70,000 個數字產品,包括:, ** 多個平...。
  • XML Feed for Skroutz & BestPrice for WooCommerce 》**摘要:** XML Feed for Skroutz & BestPrice for WooCommerce 是 WooCommerce 商店所有者的終極工具,旨在最大化在希臘領先的產品市場 Skroutz.gr 和 B...。
  • Multi-Vendor Marketplace Lite for WooCommerce – Build Intuitive B2C Online Stores Easily 》- 這個外掛可以將WooCommerce商店轉變成像亞馬遜、eBay和Etsy等多供應商商店。, - 賣家可以管理他們的庫存、個人資料頁、收藏頁等等。, - 外掛使用Google地圖...。
  • Niz Stores Carousel for Dokan 》使用 Niz Stores Carousel for Dokan 外掛,在您的網頁中加入商店輪播。透過簡單的短代碼 (shortcode) ,建立一個精彩的商店輪播,為您的市集增添多樣化的風...。
  • Marketplace Items 》在文章或頁面中顯示您的 Envato 市場作品集。適用於 CodeCanyon、 ThemeForest、VideoHive、AudioJungle、GraphicRiver、PhotoDune 和 3DOcean。, 短碼參數:...。
  • List Stores by Category for Dokan 》, Dokan Lite 外掛和 Dokan Pro 外掛需要安裝才能運行此外掛。如果您需要與 Dokan Starter 或 Dokan Business 兼容性,請在支持部分發布主題。, , 使用 List ...。
  • Feed KuantoKusta for WooCommerce – Free 》此外掛可以產生相容的 KuantoKusta WooCommerce 產品資料,讓商店擁有者可以將他的產品新增至這個價格比較網站和市集。, 商店擁有者應該先與 KuantoKusta 註...。
  • EasyAds 》EasyAds – 在所有主要市場和銷售渠道上發佈您的產品, 通過 EasyAds,在所有市場、購物網站和銷售渠道上輕鬆地發佈、管理、分析您的產品並將其銷售。Eas...。
  • Virtuaria PagBank Split 》總結文案:這個WordPress外掛提供了支援將支付自動分成兩個或多個PagSeguro帳戶的功能,讓您的虛擬商店能夠實現多商店購物車功能,讓客戶在單一交易中支付來...。
  • TalkJS 》TalkJS 外掛讓您可以輕鬆地在您的市集、即時應用程序或社交平台上添加使用者間的聊天功能,並且只需要 5 分鐘便可上線。它可以完全整合 WooCommerce 及市集/...。

文章
Filter
Apply Filters
Mastodon