Linux 软件免费装

tributors: ShoppingFeed, Be

开发者
更新时间 2021年6月21日 17:20
PHP版本: 5.2 及以上
WordPress版本: 5.5.3

标签

amazon woocommerce marketplace import orders Walmart shoppingfeed woocommerce shoppingfeed create woocommerce products shoppingfeed products feed generate shoppingfeed Jet many marketplace

下载

6.0.1 6.0.22 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.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.2.0 5.4.0 5.5.0 5.6.0 6.0.10 6.0.11 6.0.12 6.0.13 6.0.15 6.0.16 6.0.17 6.0.2 6.0.3 6.0.4 6.0.5 6.0.6 6.0.7 6.0.8 2.0.0 4.4.0(bug testing) 6.0.0 6.0.23 1.0.0 4.0.0 5.1.0 6.0.14 6.0.18 6.0.21 6.0.9

详情介绍:

WordPress connection Controller Plugin for ShoppingFeed - Sell on Amazon, Ebay, Google, and 1000's of international marketplaces Requirements Server : WordPress : Installation Sign up for free on ShoppingFeed : https://shopping-feed.com/ 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' ); /** 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 By default, we don’t support any custom plugin for wc order tracking number, you can set 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 By default, we don’t support any custom plugin for wc order tracking url, you can set 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 add 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_tracking_url_function($fields, $wc_product) { $fields[] = array('name'=>'my_field', 'value'=>'my_value'); return $fields; } Variation 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, 2 ); /** @return array */ function your_custom_tracking_url_function($images, $wc_product) { $images[] = 'https://domain.com/image1.jpg'; $images[] = 'https://domain.com/image2.jpg'; return $images; }

升级注意事项:

Version 6.0.0 is a major version, there are several changes and improvements which affect the architecture of the plugin. You will have to re-configure the plugin, all the previous settings will be lost

更新日志:

6.0.0: this is a major version, there are several changes and improvements which affect the architecture of the plugin. You will have to re-configure the plugin, all the previous settings will be lost 6.0.1: edit readme.txt 6.0.3: edit version number 6.0.4: fix permalink issue 6.0.5: correct attribute values 6.0.6: add ean support for variations 6.0.7: add weight as attribute + fix phone value 6.0.8: add missing commit 6.0.9 send WC shipping method name once order shipped 6.0.10 fix deploy issue 6.0.11 enhance logging 6.0.12 fix static call 6.0.13 add extra fields to feed 6.0.14 add the possibility to export category tree in the feed 6.0.15 add the possibility to choose the default statut for imported order 6.0.16 sum quantity of all variations on parent 6.0.17 using generator for generating products list" 6.0.18 add async generation for feed 6.0.19 add compat to the plugin Chained Product 6.0.20 add compat to the plugin ATS 6.0.21 Set status as publish on product list 6.0.22 Fix file case issue 6.0.23 If the billing address phone is empty, get the shipping one to display phone on the BO