前言介紹
- 這款 WordPress 外掛「Automated DB Schenker Shipping – HPOS supported」是 2020-12-18 上架。
- 目前有 20 個安裝啟用數。
- 上一次更新是 2024-04-16,距離現在已有 383 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 4.0.1 以上版本才可以安裝。
- 外掛要求網站主機運作至少需要 PHP 版本 5.6 以上。
- 尚未有人給過這款外掛評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
hitstacks | a2zplugins |
外掛標籤
DBS | automated | DB Schenker | DBS shipping | DBS Woocommerce |
內容簡介
DB Schenker shipping 插件,整合了 DB Schenker 服務,提供國內和國際的配送。根據目的地不同,我們提供各種 DBS 服務,並在預訂時包括三種 DB Schenker 的網站服務產品:陸運、空運和海運。
厭倦了點擊按鈕以創建運輸標籤以及在此生成它?HITShipo 是一個全自動化的工具,可降低成本並節省時間。
前端 (結帳頁面) :
為了在結帳頁面上獲取手動價格,我們將向 DB Schenker 發送產品信息和位置。
我們提供以下 DB Schenker 的國內和國際運輸承運人:
* Jetcargo 經濟型 (空運)
* Complete -FCL (海運)
* Combine -LCL (海運)
* Logistics Parcel (陸運)
以及更多的32種空運、海運和陸運服務。
通過使用 hooks 和 filters 您可以進行貨幣轉換。
後端 (運輸) :
DB Schenker shipping 插件深度與HITShipo 集成,因此運輸標籤將自動生成。您可以通過電子郵件或訂單頁面獲取運輸標籤。
此插件還支持手動運輸選項。通過使用此功能,您可以直接從訂單頁面創建運輸。 HITShipo 將跟踪訂單並將訂單狀態更新為完成。
我們的保證
支持插件中的漏洞。
我們可以自定義插件或進行必要的修改。有關自定義請聯繫我們的支持或發送電子郵件至 [email protected]。
有用的過濾器
1) 基於訂單總額的固定費用服務
function hitstacks_dbs_rate_cost_fnc($rate_cost, $rate_code, $order_total, $order_country){
if($order_total > 250){
return 0;
}
return 20; // 應返回貨幣必須是 DBS 配置的貨幣。
}
add_filter(“hitstacks_shipping_cost_conversion”, “hitstacks_dbs_rate_cost_fnc”, 10,4);
2) 隱藏任何服務
function hitstacks_dbs_hide($rate_cost, $rate_code, $order_total, $order_country){
if($order_country == “US” && $rate_code == “auco”){
return “hide”;
}
}
add_filter(“hits_dbs_hide_service”, “hitstacks_dbs_hide”, 10,4);
(注意:從 worpress 插件頁面複製代碼可能會產生“未定義常量”的錯誤。可以通過將反引號(`)替換為撇號(‘)來解決。)
您的客戶會感激 :
產品運送非常迅速。原因是,訂單和運輸標籤操作之間沒有延遲。
可獲得 DBS 的許多國內和國際運輸服務。
對店面的好印象。
配置插件的信息
如果您已經擁有 DBS 帳戶,請聯繫您的 DBS 帳戶經理以獲取您的憑證。
如果您還沒有註冊,請聯繫 DBS 客戶服務。
只有在收到您的 API 憑證後,才能使用該模塊的功能。
原文外掛簡介
DB Schenker shipping plugin, integrate the DB Schenker web service for delivery in Domestic and Internationally. According to the destination, We are providing all kind of DBS Services. Includes three DB Schenker’s web service product on booking – Land, Air, and Ocean.
Annoyed of clicking button to create shipping label and generating it here is a hassle free solution, HITShipo is the tool with fully automated will reduce your cost and will save your time.
FRONT OFFICE (CHECKOUT PAGE):
To fetch manual rates on the checkout page, we will send product information and location to DB Schenker.
We are providing the following domestic & international shipping carriers of DB Schenker:
* Jetcargo economy (Air)
* Complete -FCL (Ocean)
* Combine -LCL (Ocean)
* Logistics Parcel (Land)
and more 32 Services via Air, Ocean and Land.
By using hooks and filters you can make currency conversions.
BACK OFFICE (SHIPPING ):
DB Schenker shipping plugin is deeply integrated with HITShipo. So the shipping labels will be generated automatically. You can get the shipping label through email or from the order page.
This plugin also supported the manual shipments option. By using this you can create the shipments directly from the order page. HITShipo will keep track of the orders and update the order state to complete.
Our Guarantees
Support warranty on plugin’s bugs.
We can customize the plugin or we can make necessary modifications. For customisation please contact our support or mail to [email protected].
Useful filters
1) Flat Rate based on order total for services
function hitstacks_dbs_rate_cost_fnc($rate_cost, $rate_code, $order_total, $order_country){
if($order_total > 250){
return 0;
}
return 20; // Return currency is must to be a DBS configured currency.
}
add_filter(“hitstacks_shipping_cost_conversion”, “hitstacks_dbs_rate_cost_fnc”, 10,4);
2) Hide any service
function hitstacks_dbs_hide($rate_cost, $rate_code, $order_total, $order_country){
if($order_country == “US” && $rate_code == “auco”){
return “hide”;
}
}
add_filter(“hits_dbs_hide_service”, “hitstacks_dbs_hide”, 10,4);
3) Show flat rates
add_filter(‘hits_dbs_flat_rates’, ‘hits_dbs_flat_rates_fun’, 10, 2);
function hits_dbs_flat_rates_fun($rates=[], $order_info=[]){
$rates[] = [“code”=>”f”, “cost”=>100];
return $rates;
}
(Note: While copy paste the code from worpress plugin page may throw error “Undefined constant”. It can be fixed by replacing backtick (`) to apostrophe (‘) inside add_filter()))
Your customer will appreciate :
The Product is delivered very quickly. The reason is, there this no delay between the order and shipping label action.
Access to the many services of DBS for domestic & international shipping.
Good impression of the shop.
Informations for Configure plugin
If you have already a DBS Account, please contact your DBS account manager to get your credentials.
If you are not registered yet, please contact DBS customer service.
Functions of the module are available only after receiving your API’s credentials.
Create account in HITShipo.
Get the integration key.
Configure the plugin.
Plugin Tags:
DB Schenker, DBS, DB Schenker shipping, DBS shipping, DB Schenker Woocommerce, DBS Woocommerce, DB Schenker for woocommerce, DBS for woocommerce, official DB Schenker, official dbs, dbs plugin, DB Schenker plugin, create shipment
About DB Schenker
DB Schenker is a division of German rail operator Deutsche Bahn AG that focuses on logistics. The company was acquired by Deutsche Bahn as Schenker-Stinnes in 2002. It comprises divisions for air, land, sea freight, and Contract Logistics.
About HITShipo
We are Web Development Company. We are planning for make everything automated.
What HITShipo Tell to Customers?
“Configure & take rest”
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Automated DB Schenker Shipping – HPOS supported」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
1.0.0 | 1.0.1 | 1.0.2 | 1.0.3 | 1.2.0 | 1.2.1 | 1.2.2 | 1.2.3 | 1.2.4 | 1.2.5 | 1.2.6 | 1.2.7 | 1.2.8 | 1.2.9 | 1.3.0 | 1.3.1 | 1.3.2 | trunk | 1.2.10 |
延伸相關外掛(你可能也想知道)
Star CloudPRNT for WooCommerce 》Star CloudPRNT for WooCommerce 可讓您在 WooCommerce 基礎的電子商務網站中,每當客戶下單時便可自動列印收據。, 這可用於快速建立遠程訂單/收據列印解決方...。
WP Database Optimizer 》您是否想過可以採取一些措施來加速 WordPress 網站?您是否創建和刪除了許多文章以及嘗試了許多外掛?所有這些已刪除的內容會在數據庫中留下資料需要定期清理...。
XML Sitemap Generator By Kaboom 》Kaboom 的 XML 網站地圖產生器, 這個外掛程式可以產生一個動態網站地圖,讓搜尋引擎以最有效率的方式爬取你的網站。, 只需要點擊幾下即可輕鬆使用,並可以完...。
Pedalo Connector 》 Pedalo Connector 外掛每天提供以下功能:, , 顯示外掛狀態和版本, 顯示 WordPress 核心狀態, 顯示佈景主題狀態和版本 , 將外掛更新至最新版本, 將 WordPres...。
Automated Aramex Express live/manual shipping rates, labels and pickup 》Aramex 運送外掛,與 Aramex 完美整合,提供即時運費計算、標籤列印、產品頁面運費預覽等功能。, 此產品對您有何益處, , 提供適合您顧客的運送方式, , 這是 W...。
Automated PostNord label and pickup – HPOS Supported 》這是一款名為「PostNord shipping」的 WordPress 外掛程式,透過整合PostNord工具讓國內外運送變得更加簡單。根據目的地,我們提供所有類型的PostNord服務,...。
Twitter Widget 》在部落格的側邊欄中顯示 Twitter 帳戶的推文。, 這個外掛已經超過 2 年沒有支援了,但我注意到它的使用量仍在不斷地增加,因此我決定重新啟動它。如果您曾使...。
Title Capitalization 》這個外掛可以自動將標題字母開頭大寫,這可以讓文章看起來更正式。, 更新, 更新程序需要替換文件。您可以通過 選項 > 標題大寫化 面板檢查當前版本是否為...。
Automated DPD Shipping – HPOS supported 》DPD Shipping 外掛程式可整合國內外的 DPD 包裹寄送 服務,依據不同的目的地,提供各種 DPD 服務,支援所有國家。, 疲於點擊按鈕以創建運送標籤並在此產生時...。
rsh-Tweet 》該外掛在您的頁面、文章或首頁加入了官方Twitter Tweet Button。它允許您的使用者直接在頁面上分享鏈接。當他們點擊Tweet按鈕時,將會出現一個已預先填入指向...。
Automated USPS Shipping 》United States Postal Service外掛可以與USPS無縫整合,支援多供應商系統,並可從USPS獲取實時費用。該外掛會依據包裹重量和尺寸從USPS抓取實時費用,包括兩...。
Automated Registration of the Course 》[course] 在文章/頁面中使用此簡碼。這個外掛能讓你新增、編輯/更新和刪除課程。課程可以是啟用或停用(暫停 = 只有管理員可看到)。想要參加這些課程的參與...。
Automated Import Products to Cart 》總結:, 這個 WordPress 外掛可以讓你快速將大量商品添加到購物車中,同時可以透過文件上傳表單輕鬆實現。只需建立一個包含SKU和數量列標題的CSV文件,將所需...。
SiteLint 》使用 SiteLint 今天來審核您的網站,提升您的受眾參與度!只需一個點擊, SiteLint 將能夠辨識網站的可存取性、SEO、效能、安全性、隱私及技術問題!。
HIT Tracki – Multi-carrier Shipment Tracking 》這個外掛是 HIT Tracki - 多承運人運輸追蹤,可以整合 HITShipo,用以追蹤國內外郵件的運送狀況。根據不同地區,我們可以提供追蹤資訊。此外,它支援所有國家...。