
內容簡介
My Mitsu 是一個位於日本的網路服務,讓使用者建立估價表格。這個功能強大的表格可以創建複雜的計算式,並輸出成 PDF 檔案。特別適合商務人士使用。
https://my-mitsu.com/ (網站為日文)
這個外掛可以讓您在網站的 widget 區域輸出一個包含 My Mitsu 表格的 iframe HTML 標籤。
注意 * 若要創建估價表格,您需要先註冊 My Mitsu https://my-mitsu.jp/register 。
篩選器樣本
這個外掛還允許您設定 URL、ID、寬度和高度等預設值。您可以使用「mymitsu_widget_default_***」這個 hook 來修改預設值,以下是篩選器樣本程式碼。
add_filter( 'mymitsu_widget_default_width', 'my_widget_default_width' );
function my_widget_default_width() {
return 400;
}
外掛標籤
開發者團隊
② 後台搜尋「Widget for My Mitsu Estimation Form」→ 直接安裝(推薦)
原文外掛簡介
My Mitsu, is a webservice in Japan, allows users to create an estimation(calculation) form. A powerful form allows you to create a conditional form with calculation, and outputs a PDF file. It is suited for business persons.
https://my-mitsu.com/ (written in Japanese.)
This plugin allows you to output an iframe html tag which displays a my mitsu form in your website’s widge area.
Note * In order to create an estimation form, you need to register My Mitsu https://my-mitsu.jp/register .
Filter Sample
This plugin allows you to set your default values for URL, ID, width, and height. You can alter them by hooking the “mymitsu_widget_default_***” filter. Here is a sample code.
add_filter( 'mymitsu_widget_default_width', 'my_widget_default_width' );
function my_widget_default_width() {
return 400;
}
