
內容簡介
Pakettikauppa 是芬蘭的一家貨運服務提供商,這個外掛將他們的服務整合到 WooCommerce 中。只要安裝此外掛並使用您在 Pakettikauppa 註冊的 API 憑證,您就可以開始使用 WooCommerce 進行貨運。
注意!如果您已經和 Posti、Matkahuolto、DB Schenker、Asendia 或 GLS 簽訂了帶有優惠價格的貨運合約,您可以聯繫 Pakettikauppa 的客戶支援部門,獲得這些合約,以便您可以使用 WooCommerce Pakettikauppa 外掛程式進行貨運。無需使用物流服務自己的整合程式 (例如 Posti SmartShip / Prinetti)。
此外掛需要 WooCommerce 4.7.0 或以上的版本。
註冊並開始貨運
透過www.pakettikauppa.fi註冊。申請只需幾分鐘即可完成。
功能
將 Pakettikauppa 與 WooCommerce 整合
基於官方的Pakettikauppa API library
支援 WooCommerce 的貨運區域和類別 (目前只在芬蘭可用)
客戶可以選擇將產品運送到地址或從 Pakettikauppa 的貨運方式中選擇任何取貨點
商家可以將取貨點添加到任何貨運區域的貨運方式中
商家可以使用任何貨運價格外掛
商家可以輕鬆產生一鍵生成貨運標籤
商家可以從訂單查看中以批量操作的方式產生貨運標籤
商家和客戶會收到追踪代碼鏈接和狀態信息
支援貨到付款
提供測試模式,使用測試 API,無需註冊
開發者說明
鉤子
pakettikauppa_prepare_create_shipment
參數:$order、$service_id、$additional_services。
pakettikauppa_post_create_shipment
參數:$order。
操作
pakettikauppa_create_shipments
例如,呼叫:
$pdf = '';
$order_ids = array (15, 16, 17);
$args = array( $order_ids, &$pdf );
do_action_ref_array('pakettikauppa_create_shipments', $args);"
pakettikauppa_fetch_shipping_labels
例如,呼叫:
$tracking_codes=array();
$args = array( $order_id, &$tracking_code );
do_action_ref_array('pakettikauppa_fetch_tracking_codes', $args);
pakettikauppa_fetch_tracking_codes
例如,呼叫:
$args = array( $order_id, $order_id2, ... );
do_action('pakettikauppa_create_shipments', $args);
外掛標籤
開發者團隊
📦 歷史版本下載
原文外掛簡介
Pakettikauppa is a shipping service provider in Finland. This plugin integrates their service into WooCommerce. To start shipping, all your WooCommerce needs is this plugin and a API credentials of your account registered with Pakettikauppa.
Note! If you already have shipping contracts with Posti, Matkahuolto, DB Schenker, Asendia or GLS with reduced prices, you can contact the customer support of Pakettikauppa to get those contracts via Pakettikauppa so you can use the WooCommerce Pakettikauppa plugin with your current shipping contracts. No need to use logistics services own integrations (e.g. Posti SmartShip / Prinetti )
This plugin requires at least WooCommerce version 4.7.0.
Register and start shipping
Register through www.pakettikauppa.fi. Process only takes few minutes.
Features
Integrates Pakettikauppa with WooCommerce
Based on the official Pakettikauppa API library
Supports WooCommerce shipping zones and classes (though Pakettikauppa is currently only available in Finland)
Customers can choose to ship products to an address or to any pickup point available from the Pakettikauppa shipping methods
Store owners can add pickup points to any shipping zones shipping method
Store owners can use whatever shipping pricing plugin
Store owners can generate the shipping label in one click
Store owners can generate shipping labels as mass action from orders view
Store owners and customers get tracking code links and status information
Support for Cash-On-Delivery
Test mode available that uses the testing API without registration
Developer notes
Hooks
pakettikauppa_prepare_create_shipment
arguments: $order, $service_id, $additional_services
pakettikauppa_post_create_shipment
arguments: $order
Actions
pakettikauppa_create_shipments
Call for example:
$pdf = '';
$order_ids = array (15, 16, 17);
$args = array( $order_ids, &$pdf );
do_action_ref_array('pakettikauppa_create_shipments', $args);"
pakettikauppa_fetch_shipping_labels
Call for example:
$tracking_codes=array();
$args = array( $order_id, &$tracking_code );
do_action_ref_array('pakettikauppa_fetch_tracking_codes', $args);
pakettikauppa_fetch_tracking_codes
Call for example:
$args = array( $order_id, $order_id2, ... );
do_action('pakettikauppa_create_shipments', $args);
